about summary refs log tree commit diff
path: root/compiler/rustc_ast/src
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2022-07-12 13:33:25 +0400
committerMaybe Waffle <waffle.lapkin@gmail.com>2022-07-12 16:26:08 +0400
commitf89ef3cf66206b7c0ba0ca134de40b567c7bda83 (patch)
treeb5a8f01150346d2d5032a568c19751371a9cd007 /compiler/rustc_ast/src
parent97fcead24219bea0db1d2133ffd347760ec161d8 (diff)
downloadrust-f89ef3cf66206b7c0ba0ca134de40b567c7bda83.tar.gz
rust-f89ef3cf66206b7c0ba0ca134de40b567c7bda83.zip
Comment out expr size check
Diffstat (limited to 'compiler/rustc_ast/src')
-rw-r--r--compiler/rustc_ast/src/ast.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_ast/src/ast.rs b/compiler/rustc_ast/src/ast.rs
index ac2328a5824..656dff733f6 100644
--- a/compiler/rustc_ast/src/ast.rs
+++ b/compiler/rustc_ast/src/ast.rs
@@ -1112,8 +1112,8 @@ pub struct Expr {
 }
 
 // `Expr` is used a lot. Make sure it doesn't unintentionally get bigger.
-#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
-rustc_data_structures::static_assert_size!(Expr, 104);
+//#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
+//rustc_data_structures::static_assert_size!(Expr, 104); // FIXME
 
 impl Expr {
     /// Returns `true` if this expression would be valid somewhere that expects a value;