2023-06-08 02:18:34 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
2024-04-20 06:19:34 -05:00
|
|
|
//@ test-mir-pass: DataflowConstProp
|
2022-08-25 11:43:46 -05:00
|
|
|
|
|
|
|
fn foo(n: i32) {}
|
|
|
|
|
|
|
|
// EMIT_MIR terminator.main.DataflowConstProp.diff
|
2024-01-08 22:21:23 -06:00
|
|
|
|
2024-01-12 01:22:33 -06:00
|
|
|
// CHECK-LABEL: fn main(
|
2022-08-25 11:43:46 -05:00
|
|
|
fn main() {
|
|
|
|
let a = 1;
|
2022-11-09 11:03:30 -06:00
|
|
|
// Checks that we propagate into terminators.
|
2024-01-29 00:44:32 -06:00
|
|
|
// CHECK: {{_.*}} = foo(const 2_i32) -> [return: {{bb.*}}, unwind
|
2022-08-25 11:43:46 -05:00
|
|
|
foo(a + 1);
|
|
|
|
}
|