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
799 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-07-26 12:04:27 -05:00
// unit-test: ConstProp
// compile-flags: -O
2020-07-27 14:22:43 -05:00
// EMIT_MIR aggregate.main.ConstProp.diff
fn main() {
2023-12-02 14:17:04 -06: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 06:50:27 -06:00
foo(x);
}
2023-12-02 14:17:04 -06:00
// Verify that we still propagate if part of the aggregate is not known.
2023-01-29 06:50:27 -06:00
// EMIT_MIR aggregate.foo.ConstProp.diff
fn foo(x: u8) {
2023-12-02 14:17:04 -06: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 06:50:27 -06:00
let first = (0, x).0 + 1;
let second = (x, 1).1 + 2;
}