diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-04-16 17:02:20 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-04-18 15:36:25 +1000 |
| commit | 0d97669a171d3d5c9c9c2d3437421d2d35d9bbb5 (patch) | |
| tree | bfd7456fa92e7c81dd637db8a2c163184a88e38e /compiler/rustc_parse/src/lexer/mod.rs | |
| parent | 1cec373f65eb76e8e4b4d1847213cf3ec6c292b6 (diff) | |
| download | rust-0d97669a171d3d5c9c9c2d3437421d2d35d9bbb5.tar.gz rust-0d97669a171d3d5c9c9c2d3437421d2d35d9bbb5.zip | |
Simplify `static_assert_size`s.
We want to run them on all 64-bit platforms.
Diffstat (limited to 'compiler/rustc_parse/src/lexer/mod.rs')
| -rw-r--r-- | compiler/rustc_parse/src/lexer/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lexer/mod.rs b/compiler/rustc_parse/src/lexer/mod.rs index 1c1ca0bac81..058539e1717 100644 --- a/compiler/rustc_parse/src/lexer/mod.rs +++ b/compiler/rustc_parse/src/lexer/mod.rs @@ -30,7 +30,7 @@ use unescape_error_reporting::{emit_unescape_error, escaped_char}; // // This assertion is in this crate, rather than in `rustc_lexer`, because that // crate cannot depend on `rustc_data_structures`. -#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))] +#[cfg(target_pointer_width = "64")] rustc_data_structures::static_assert_size!(rustc_lexer::Token, 12); #[derive(Clone, Debug)] |
