File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ extern "C" {
5656// emitted for the function.
5757//
5858// This is the ELF version.
59- #[ cfg( not( target_vendor = "apple" ) ) ]
59+ #[ cfg( not( any ( target_vendor = "apple" , target_os = "uefi" ) ) ) ]
6060macro_rules! define_rust_probestack {
6161 ( $body: expr) => {
6262 concat!(
@@ -76,7 +76,7 @@ macro_rules! define_rust_probestack {
7676}
7777
7878// Same as above, but for Mach-O.
79- #[ cfg( target_vendor = "apple" ) ]
79+ #[ cfg( any ( target_vendor = "apple" , target_os = "uefi" ) ) ]
8080macro_rules! define_rust_probestack {
8181 ( $body: expr) => {
8282 concat!(
Original file line number Diff line number Diff line change 1- #![ feature( compiler_builtins_lib) ]
2-
31extern crate compiler_builtins;
42
53use compiler_builtins:: int:: __clzsi2;
Original file line number Diff line number Diff line change 1- #![ feature( compiler_builtins_lib) ]
21#![ feature( lang_items) ]
32#![ allow( bad_style) ]
43#![ allow( unused_imports) ]
You can’t perform that action at this time.
0 commit comments