summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs')
-rw-r--r--compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs b/compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs
index 91de04d97..afc51a47f 100644
--- a/compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs
+++ b/compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs
@@ -353,6 +353,17 @@ fn main() {
let f = V([0.0, 1.0]);
let _a = f.0[0];
+
+ stack_val_align();
+}
+
+#[inline(never)]
+fn stack_val_align() {
+ #[repr(align(8192))]
+ struct Foo(u8);
+
+ let a = Foo(0);
+ assert_eq!(&a as *const Foo as usize % 8192, 0);
}
#[cfg(all(