diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2025-06-30 17:42:03 +0300 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2025-06-30 17:42:03 +0300 |
| commit | 0edf5726c773484b53f9612f687dec916a60883f (patch) | |
| tree | 69ecc9ed7f6fb830c4814d1085ba96820b4ab864 /tests/codegen/min-function-alignment.rs | |
| parent | 3b5b35052ca29244f6681a995d8b372b39f210b4 (diff) | |
| parent | ad3b7257615c28aaf8212a189ec032b8af75de51 (diff) | |
| download | rust-0edf5726c773484b53f9612f687dec916a60883f.tar.gz rust-0edf5726c773484b53f9612f687dec916a60883f.zip | |
Merge from rust-lang/rust
Diffstat (limited to 'tests/codegen/min-function-alignment.rs')
| -rw-r--r-- | tests/codegen/min-function-alignment.rs | 10 |
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 |
