summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/const_prop/switch_int.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/const_prop/switch_int.rs')
-rw-r--r--src/test/mir-opt/const_prop/switch_int.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/mir-opt/const_prop/switch_int.rs b/src/test/mir-opt/const_prop/switch_int.rs
deleted file mode 100644
index d7319eca1..000000000
--- a/src/test/mir-opt/const_prop/switch_int.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-#[inline(never)]
-fn foo(_: i32) { }
-
-// EMIT_MIR switch_int.main.ConstProp.diff
-// EMIT_MIR switch_int.main.SimplifyConstCondition-after-const-prop.diff
-fn main() {
- match 1 {
- 1 => foo(0),
- _ => foo(-1),
- }
-}