Rollup merge of #142923 - folkertdev:min-function-alignment-no-attributes, r=workingjubilee
fix `-Zmin-function-alignment` on functions without attributes tracking issue: https://github.com/rust-lang/rust/issues/82232 related: https://github.com/rust-lang/rust/pull/142854 The minimum function alignment was skipped on functions without attributes (because the logic was in a loop that only runs if there is at least one attribute). The underlying reason we didn't catch this before is that in our testing we generally apply `#[no_mangle]` to functions that are tested. I've added a test now that deliberately has no attributes. r? `@workingjubilee`
This commit is contained in:
commit
b7a9cd871c
2 changed files with 10 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue