aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/MIR/Generic/expected-mbb-reference-for-successor-mbb.mir
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/MIR/Generic/expected-mbb-reference-for-successor-mbb.mir')
-rw-r--r--test/CodeGen/MIR/Generic/expected-mbb-reference-for-successor-mbb.mir28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/CodeGen/MIR/Generic/expected-mbb-reference-for-successor-mbb.mir b/test/CodeGen/MIR/Generic/expected-mbb-reference-for-successor-mbb.mir
deleted file mode 100644
index 42996568fe27..000000000000
--- a/test/CodeGen/MIR/Generic/expected-mbb-reference-for-successor-mbb.mir
+++ /dev/null
@@ -1,28 +0,0 @@
-# RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
-
---- |
-
- define i32 @foo(i32 %a) {
- entry:
- %0 = icmp sle i32 %a, 10
- br i1 %0, label %less, label %exit
-
- less:
- ret i32 0
-
- exit:
- ret i32 %a
- }
-
-...
----
-name: foo
-body: |
- bb.0.entry:
- ; CHECK: [[@LINE+1]]:29: expected a machine basic block reference
- successors: %bb.1.less, 2
-
- bb.1.less:
-
- bb.2.exit:
-...