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

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

30 lines
781 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-09-20 21:43:33 +00:00
// unit-test: GVN
// compile-flags: -O
2023-09-20 21:43:33 +00:00
// EMIT_MIR aggregate.main.GVN.diff
fn main() {
2023-12-02 20:17:04 +00:00
// CHECK-LABEL: fn main(
// CHECK: debug x => [[x:_.*]];
// CHECK-NOT: = Add(
// CHECK: [[x]] = const 1_u8;
// CHECK-NOT: = Add(
// CHECK: foo(const 1_u8)
let x = (0, 1, 2).1 + 0;
2023-01-29 12:50:27 +00:00
foo(x);
}
2023-12-02 20:17:04 +00:00
// Verify that we still propagate if part of the aggregate is not known.
2023-09-20 21:43:33 +00:00
// EMIT_MIR aggregate.foo.GVN.diff
2023-01-29 12:50:27 +00:00
fn foo(x: u8) {
2023-12-02 20:17:04 +00:00
// CHECK-LABEL: fn foo(
// CHECK: debug first => [[first:_.*]];
// CHECK: debug second => [[second:_.*]];
// CHECK-NOT: = Add(
// CHECK: [[first]] = const 1_i32;
// CHECK-NOT: = Add(
// CHECK: [[second]] = const 3_i32;
2023-01-29 12:50:27 +00:00
let first = (0, x).0 + 1;
let second = (x, 1).1 + 2;
}