@@ -209,13 +209,13 @@ macro_rules! intrinsics {
209
209
210
210
$( $rest: tt) *
211
211
) => (
212
- #[ cfg( all( windows, target_arch = "x86_64" ) ) ]
212
+ #[ cfg( all( any ( windows, target_os = "uefi" ) , target_arch = "x86_64" ) ) ]
213
213
$( #[ $( $attr) * ] ) *
214
214
pub extern $abi fn $name( $( $argname: $ty) ,* ) $( -> $ret) ? {
215
215
$( $body) *
216
216
}
217
217
218
- #[ cfg( all( windows, target_arch = "x86_64" ) ) ]
218
+ #[ cfg( all( any ( windows, target_os = "uefi" ) , target_arch = "x86_64" ) ) ]
219
219
pub mod $name {
220
220
#[ cfg_attr( not( feature = "mangled-names" ) , no_mangle) ]
221
221
pub extern $abi fn $name( $( $argname: $ty) ,* )
@@ -226,7 +226,7 @@ macro_rules! intrinsics {
226
226
}
227
227
}
228
228
229
- #[ cfg( not( all( windows, target_arch = "x86_64" ) ) ) ]
229
+ #[ cfg( not( all( any ( windows, target_os = "uefi" ) , target_arch = "x86_64" ) ) ) ]
230
230
intrinsics! {
231
231
$( #[ $( $attr) * ] ) *
232
232
pub extern $abi fn $name( $( $argname: $ty) ,* ) $( -> $ret) ? {
@@ -426,7 +426,7 @@ macro_rules! intrinsics {
426
426
427
427
// Hack for LLVM expectations for ABI on windows. This is used by the
428
428
// `#[win64_128bit_abi_hack]` attribute recognized above
429
- #[ cfg( all( windows, target_pointer_width = "64" ) ) ]
429
+ #[ cfg( all( any ( windows, target_os = "uefi" ) , target_pointer_width = "64" ) ) ]
430
430
pub mod win64_128bit_abi_hack {
431
431
#[ repr( simd) ]
432
432
pub struct U64x2 ( u64 , u64 ) ;
0 commit comments