Skip to content

Commit 6564bac

Browse files
committed
FileCheck aggregate.
1 parent 378abbc commit 6564bac

5 files changed

+14
-174
lines changed

tests/mir-opt/const_prop/aggregate.foo.PreCodegen.after.panic-abort.mir

-49
This file was deleted.

tests/mir-opt/const_prop/aggregate.foo.PreCodegen.after.panic-unwind.mir

-49
This file was deleted.

tests/mir-opt/const_prop/aggregate.main.PreCodegen.after.panic-abort.mir

-36
This file was deleted.

tests/mir-opt/const_prop/aggregate.main.PreCodegen.after.panic-unwind.mir

-36
This file was deleted.

tests/mir-opt/const_prop/aggregate.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
1-
// skip-filecheck
21
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
32
// unit-test: ConstProp
43
// compile-flags: -O
54

65
// EMIT_MIR aggregate.main.ConstProp.diff
7-
// EMIT_MIR aggregate.main.PreCodegen.after.mir
86
fn main() {
7+
// CHECK-LABEL: fn main(
8+
// CHECK: debug x => [[x:_.*]];
9+
// CHECK-NOT: = Add(
10+
// CHECK: [[x]] = const 1_u8;
11+
// CHECK-NOT: = Add(
12+
// CHECK: foo(const 1_u8)
913
let x = (0, 1, 2).1 + 0;
1014
foo(x);
1115
}
1216

17+
// Verify that we still propagate if part of the aggregate is not known.
1318
// EMIT_MIR aggregate.foo.ConstProp.diff
14-
// EMIT_MIR aggregate.foo.PreCodegen.after.mir
1519
fn foo(x: u8) {
16-
// Verify that we still propagate if part of the aggregate is not known.
20+
// CHECK-LABEL: fn foo(
21+
// CHECK: debug first => [[first:_.*]];
22+
// CHECK: debug second => [[second:_.*]];
23+
// CHECK-NOT: = Add(
24+
// CHECK: [[first]] = const 1_i32;
25+
// CHECK-NOT: = Add(
26+
// CHECK: [[second]] = const 3_i32;
1727
let first = (0, x).0 + 1;
1828
let second = (x, 1).1 + 2;
1929
}

0 commit comments

Comments
 (0)