mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
72800d3b89
Except for `simd-intrinsic/`, which has a lot of files containing multiple types like `u8x64` which really are better when hand-formatted. There is a surprising amount of two-space indenting in this directory. Non-trivial changes: - `rustfmt::skip` needed in `debug-column.rs` to preserve meaning of the test. - `rustfmt::skip` used in a few places where hand-formatting read more nicely: `enum/enum-match.rs` - Line number adjustments needed for the expected output of `debug-column.rs` and `coroutine-debug.rs`.
48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
//@ revisions: NO-OPT SIZE-OPT SPEED-OPT
|
|
//@[NO-OPT] compile-flags: -Copt-level=0 -Ccodegen-units=1
|
|
//@[SIZE-OPT] compile-flags: -Copt-level=s -Ccodegen-units=1
|
|
//@[SPEED-OPT] compile-flags: -Copt-level=3 -Ccodegen-units=1
|
|
|
|
#![feature(optimize_attribute)]
|
|
#![crate_type = "rlib"]
|
|
|
|
// CHECK-LABEL: define{{.*}}i32 @nothing
|
|
// CHECK-SAME: [[NOTHING_ATTRS:#[0-9]+]]
|
|
// SIZE-OPT: ret i32 4
|
|
// SPEED-OPT: ret i32 4
|
|
#[no_mangle]
|
|
pub fn nothing() -> i32 {
|
|
2 + 2
|
|
}
|
|
|
|
// CHECK-LABEL: define{{.*}}i32 @size
|
|
// CHECK-SAME: [[SIZE_ATTRS:#[0-9]+]]
|
|
// SIZE-OPT: ret i32 6
|
|
// SPEED-OPT: ret i32 6
|
|
#[optimize(size)]
|
|
#[no_mangle]
|
|
pub fn size() -> i32 {
|
|
3 + 3
|
|
}
|
|
|
|
// CHECK-LABEL: define{{.*}}i32 @speed
|
|
// NO-OPT-SAME: [[NOTHING_ATTRS]]
|
|
// SPEED-OPT-SAME: [[NOTHING_ATTRS]]
|
|
// SIZE-OPT-SAME: [[SPEED_ATTRS:#[0-9]+]]
|
|
// SIZE-OPT: ret i32 8
|
|
// SPEED-OPT: ret i32 8
|
|
#[optimize(speed)]
|
|
#[no_mangle]
|
|
pub fn speed() -> i32 {
|
|
4 + 4
|
|
}
|
|
|
|
// NO-OPT-DAG: attributes [[SIZE_ATTRS]] = {{.*}}minsize{{.*}}optsize{{.*}}
|
|
// SPEED-OPT-DAG: attributes [[SIZE_ATTRS]] = {{.*}}minsize{{.*}}optsize{{.*}}
|
|
// SIZE-OPT-DAG: attributes [[NOTHING_ATTRS]] = {{.*}}optsize{{.*}}
|
|
// SIZE-OPT-DAG: attributes [[SIZE_ATTRS]] = {{.*}}minsize{{.*}}optsize{{.*}}
|
|
|
|
// SIZE-OPT: attributes [[SPEED_ATTRS]]
|
|
// SIZE-OPT-NOT: minsize
|
|
// SIZE-OPT-NOT: optsize
|