File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
authors = [" Jorge Aparicio <japaricious@gmail.com>" ]
3
3
name = " compiler_builtins"
4
- version = " 0.1.23 "
4
+ version = " 0.1.24 "
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
7
7
repository = " https://github.com/rust-lang/compiler-builtins"
Original file line number Diff line number Diff line change @@ -165,13 +165,13 @@ macro_rules! intrinsics {
165
165
166
166
$( $rest: tt) *
167
167
) => (
168
- #[ cfg( all( windows, target_pointer_width = "64 " ) ) ]
168
+ #[ cfg( all( windows, target_arch = "x86_64 " ) ) ]
169
169
$( #[ $( $attr) * ] ) *
170
170
pub extern $abi fn $name( $( $argname: $ty) ,* ) -> $ret {
171
171
$( $body) *
172
172
}
173
173
174
- #[ cfg( all( windows, target_pointer_width = "64 " ) ) ]
174
+ #[ cfg( all( windows, target_arch = "x86_64 " ) ) ]
175
175
pub mod $name {
176
176
177
177
intrinsics! {
@@ -184,7 +184,7 @@ macro_rules! intrinsics {
184
184
}
185
185
}
186
186
187
- #[ cfg( not( all( windows, target_pointer_width = "64 " ) ) ) ]
187
+ #[ cfg( not( all( windows, target_arch = "x86_64 " ) ) ) ]
188
188
intrinsics! {
189
189
$( #[ $( $attr) * ] ) *
190
190
pub extern $abi fn $name( $( $argname: $ty) ,* ) -> $ret {
You can’t perform that action at this time.
0 commit comments