File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ macro_rules! cpubits {
197197 // Same API as immediately above, but with a pseudo-attribute we use to pass the `cfg` overrides
198198 // for `target_pointer_width` that promote a 32-bit target into a 64-bit one.
199199 (
200- #[ cfg( enable_64_bit = $( $enable_64bit : tt) + ) ]
200+ #[ cfg( enable_64_bit = $( $enable_64_bit : tt) + ) ]
201201 16 => { $( $tokens16: tt ) * }
202202 32 => { $( $tokens32: tt ) * }
203203 64 => { $( $tokens64: tt ) * }
@@ -211,14 +211,14 @@ macro_rules! cpubits {
211211 (
212212 ( all(
213213 target_pointer_width = "32" ,
214- not( $( $enable_64bit ) +)
214+ not( $( $enable_64_bit ) +)
215215 ) )
216216 ( $( $tokens32 ) * )
217217 ) ,
218218 (
219219 ( any(
220220 target_pointer_width = "64" ,
221- $( $enable_64bit ) +
221+ $( $enable_64_bit ) +
222222 ) )
223223 ( $( $tokens64 ) * )
224224 ) ,
You can’t perform that action at this time.
0 commit comments