about summary refs log tree commit diff
path: root/tests/codegen/min-function-alignment.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-06-28 07:40:14 +0000
committerGitHub <noreply@github.com>2025-06-28 07:40:14 +0000
commit96a70e2e917a2e8e1dc028fcaeacba5b420d8e71 (patch)
treead46d6add78b59ba3d90ffab57c876d237e4ace0 /tests/codegen/min-function-alignment.rs
parent03901977c9b88132a478b4dba6ebb8a795140082 (diff)
parent35e6def4879ff3b30862d827665ce9da052ed730 (diff)
downloadrust-96a70e2e917a2e8e1dc028fcaeacba5b420d8e71.tar.gz
rust-96a70e2e917a2e8e1dc028fcaeacba5b420d8e71.zip
Merge pull request #4417 from rust-lang/rustup-2025-06-28
Automatic Rustup
Diffstat (limited to 'tests/codegen/min-function-alignment.rs')
-rw-r--r--tests/codegen/min-function-alignment.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/codegen/min-function-alignment.rs b/tests/codegen/min-function-alignment.rs
index 75f845572a4..78989ec5df2 100644
--- a/tests/codegen/min-function-alignment.rs
+++ b/tests/codegen/min-function-alignment.rs
@@ -1,17 +1,19 @@
 //@ revisions: align16 align1024
-//@ compile-flags: -C no-prepopulate-passes -Z mir-opt-level=0
+//@ compile-flags: -C no-prepopulate-passes -Z mir-opt-level=0 -Clink-dead-code
 //@ [align16] compile-flags: -Zmin-function-alignment=16
 //@ [align1024] compile-flags: -Zmin-function-alignment=1024
 
 #![crate_type = "lib"]
 #![feature(fn_align)]
 
-// functions without explicit alignment use the global minimum
+// Functions without explicit alignment use the global minimum.
 //
-// CHECK-LABEL: @no_explicit_align
+// NOTE: this function deliberately has zero (0) attributes! That is to make sure that
+// `-Zmin-function-alignment` is applied regardless of whether attributes are used.
+//
+// CHECK-LABEL: no_explicit_align
 // align16: align 16
 // align1024: align 1024
-#[no_mangle]
 pub fn no_explicit_align() {}
 
 // CHECK-LABEL: @lower_align