blob: 510d500847a898b2415a7b8aaba5d2992588ada3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
;------------------------------------------------------------------------------
; IA32/StackCheckFunctionsMsvc.nasm
;
; Copyright (c) Microsoft Corporation.
; SPDX-License-Identifier: BSD-2-Clause-Patent
;------------------------------------------------------------------------------
DEFAULT REL
SECTION .text
global ASM_PFX(__report_rangecheckfailure)
ASM_PFX(__report_rangecheckfailure):
ret
global ASM_PFX(__GSHandlerCheck)
ASM_PFX(__GSHandlerCheck):
ret
global @__security_check_cookie@4
@__security_check_cookie@4:
ret
|