Don't modify the intrinsic abi for aarch64 windows (#337)

master
Daniel Frampton 2020-01-14 13:28:10 -08:00 committed by Alex Crichton
parent d7191b14c1
commit 0a15c9bdfe
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
name = "compiler_builtins"
version = "0.1.23"
version = "0.1.24"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-lang/compiler-builtins"

View File

@ -165,13 +165,13 @@ macro_rules! intrinsics {
$($rest:tt)*
) => (
#[cfg(all(windows, target_pointer_width = "64"))]
#[cfg(all(windows, target_arch = "x86_64"))]
$(#[$($attr)*])*
pub extern $abi fn $name( $($argname: $ty),* ) -> $ret {
$($body)*
}
#[cfg(all(windows, target_pointer_width = "64"))]
#[cfg(all(windows, target_arch = "x86_64"))]
pub mod $name {
intrinsics! {
@ -184,7 +184,7 @@ macro_rules! intrinsics {
}
}
#[cfg(not(all(windows, target_pointer_width = "64")))]
#[cfg(not(all(windows, target_arch = "x86_64")))]
intrinsics! {
$(#[$($attr)*])*
pub extern $abi fn $name( $($argname: $ty),* ) -> $ret {