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

14 lines
261 B
Rust
Raw Normal View History

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