diff options
| author | Jarl Evanson <evanson.jarl@gmail.com> | 2024-01-28 13:50:20 -0600 |
|---|---|---|
| committer | Jarl Evanson <evanson.jarl@gmail.com> | 2024-01-28 13:50:20 -0600 |
| commit | d1edc9d0dbd4ce9f1d71eba2ae4116efea8a6f2f (patch) | |
| tree | 52e242fd2fd6e2bd53159b69e8213836c1b8d54c /tests/mir-opt | |
| parent | f38489e957a1f169be4071947a4426885793f03b (diff) | |
| download | rust-d1edc9d0dbd4ce9f1d71eba2ae4116efea8a6f2f.tar.gz rust-d1edc9d0dbd4ce9f1d71eba2ae4116efea8a6f2f.zip | |
Enable `simplify` MIR-opt test
Diffstat (limited to 'tests/mir-opt')
| -rw-r--r-- | tests/mir-opt/simplify_if.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/mir-opt/simplify_if.rs b/tests/mir-opt/simplify_if.rs index 19b5806f720..f600c059581 100644 --- a/tests/mir-opt/simplify_if.rs +++ b/tests/mir-opt/simplify_if.rs @@ -1,10 +1,13 @@ -// skip-filecheck // EMIT_MIR_FOR_EACH_PANIC_STRATEGY #[inline(never)] fn noop() {} // EMIT_MIR simplify_if.main.SimplifyConstCondition-after-const-prop.diff fn main() { + // CHECK-LABEL: fn main( + + // CHECK: bb0: { + // CHECK-NEXT: return; if false { noop(); } |
