We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f5c769 commit 91f7d76Copy full SHA for 91f7d76
compiler/rustc_middle/src/mir/interpret/value.rs
@@ -578,6 +578,9 @@ pub enum ScalarMaybeUninit<Tag = ()> {
578
Uninit,
579
}
580
581
+#[cfg(target_arch = "x86_64")]
582
+static_assert_size!(ScalarMaybeUninit, 24);
583
+
584
impl<Tag> From<Scalar<Tag>> for ScalarMaybeUninit<Tag> {
585
#[inline(always)]
586
fn from(s: Scalar<Tag>) -> Self {
0 commit comments