File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11[package ]
22authors = [" Jorge Aparicio <japaricious@gmail.com>" ]
33name = " compiler_builtins"
4- version = " 0.1.23 "
4+ version = " 0.1.24 "
55license = " MIT/Apache-2.0"
66readme = " README.md"
77repository = " https://github.com/rust-lang/compiler-builtins"
Original file line number Diff line number Diff line change @@ -165,13 +165,13 @@ macro_rules! intrinsics {
165165
166166 $( $rest: tt) *
167167 ) => (
168- #[ cfg( all( windows, target_pointer_width = "64 " ) ) ]
168+ #[ cfg( all( windows, target_arch = "x86_64 " ) ) ]
169169 $( #[ $( $attr) * ] ) *
170170 pub extern $abi fn $name( $( $argname: $ty) ,* ) -> $ret {
171171 $( $body) *
172172 }
173173
174- #[ cfg( all( windows, target_pointer_width = "64 " ) ) ]
174+ #[ cfg( all( windows, target_arch = "x86_64 " ) ) ]
175175 pub mod $name {
176176
177177 intrinsics! {
@@ -184,7 +184,7 @@ macro_rules! intrinsics {
184184 }
185185 }
186186
187- #[ cfg( not( all( windows, target_pointer_width = "64 " ) ) ) ]
187+ #[ cfg( not( all( windows, target_arch = "x86_64 " ) ) ) ]
188188 intrinsics! {
189189 $( #[ $( $attr) * ] ) *
190190 pub extern $abi fn $name( $( $argname: $ty) ,* ) -> $ret {
You can’t perform that action at this time.
0 commit comments