File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ use core::intrinsics;
11
11
intrinsics ! {
12
12
#[ naked]
13
13
#[ cfg( all(
14
- windows,
15
- target_env = "gnu" ,
14
+ any( all( windows, target_env = "gnu" ) , target_os = "uefi" ) ,
16
15
not( feature = "no-asm" )
17
16
) ) ]
18
17
pub unsafe extern "C" fn ___chkstk_ms( ) {
@@ -40,8 +39,7 @@ intrinsics! {
40
39
41
40
#[ naked]
42
41
#[ cfg( all(
43
- windows,
44
- target_env = "gnu" ,
42
+ any( all( windows, target_env = "gnu" ) , target_os = "uefi" ) ,
45
43
not( feature = "no-asm" )
46
44
) ) ]
47
45
pub unsafe extern "C" fn __alloca( ) {
@@ -54,8 +52,7 @@ intrinsics! {
54
52
55
53
#[ naked]
56
54
#[ cfg( all(
57
- windows,
58
- target_env = "gnu" ,
55
+ any( all( windows, target_env = "gnu" ) , target_os = "uefi" ) ,
59
56
not( feature = "no-asm" )
60
57
) ) ]
61
58
pub unsafe extern "C" fn ___chkstk( ) {
You can’t perform that action at this time.
0 commit comments