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

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

12 lines
273 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-09-20 16:43:33 -05:00
// unit-test: GVN
2019-06-01 13:08:04 -05:00
// compile-flags: -C overflow-checks=on
2023-09-20 16:43:33 -05:00
// EMIT_MIR indirect.main.GVN.diff
2019-06-01 13:08:04 -05:00
fn main() {
2023-12-02 14:29:47 -06:00
// CHECK-LABEL: fn main(
// CHECK: debug x => [[x:_.*]];
// CHECK: [[x]] = const 3_u8;
2019-06-01 13:08:04 -05:00
let x = (2u32 as u8) + 1;
}