summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/tail-threshold.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/tail-threshold.ll')
-rw-r--r--test/CodeGen/X86/tail-threshold.ll41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/CodeGen/X86/tail-threshold.ll b/test/CodeGen/X86/tail-threshold.ll
deleted file mode 100644
index 17e22d9dd9..0000000000
--- a/test/CodeGen/X86/tail-threshold.ll
+++ /dev/null
@@ -1,41 +0,0 @@
-; RUN: llc %s -stats -tail-merge-threshold 2 -o /dev/null |& FileCheck %s
-
-; Test that we still do some merging if a block has more than
-; tail-merge-threshold predecessors.
-
-; CHECK: 2 branchfolding - Number of block tails merged
-
-declare void @bar()
-
-define void @foo(i32 %xxx) {
-entry:
- switch i32 %xxx, label %bb4 [
- i32 0, label %bb0
- i32 1, label %bb1
- i32 2, label %bb2
- i32 3, label %bb3
- ]
-
-bb0:
- call void @bar()
- br label %bb5
-
-bb1:
- call void @bar()
- br label %bb5
-
-bb2:
- call void @bar()
- br label %bb5
-
-bb3:
- call void @bar()
- br label %bb5
-
-bb4:
- call void @bar()
- br label %bb5
-
-bb5:
- ret void
-}