rust/tests/mir-opt/const_prop/scalar_literal_propagation.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
260 B
Rust
Raw Normal View History

2023-09-20 16:43:33 -05:00
// unit-test: GVN
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-12-02 15:02:42 -06:00
2023-09-20 16:43:33 -05:00
// EMIT_MIR scalar_literal_propagation.main.GVN.diff
fn main() {
2023-12-02 15:02:42 -06:00
// CHECK-LABEL: fn main(
// CHECK: = consume(const 1_u32)
let x = 1;
consume(x);
}
#[inline(never)]
fn consume(_: u32) { }