aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/X86/tail-threshold.ll7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/CodeGen/X86/tail-threshold.ll b/test/CodeGen/X86/tail-threshold.ll
index 9541c01a4f..6c7d5aaecc 100644
--- a/test/CodeGen/X86/tail-threshold.ll
+++ b/test/CodeGen/X86/tail-threshold.ll
@@ -1,9 +1,12 @@
-; RUN: llc -march=x86-64 %s -stats -tail-merge-threshold 2 -o /dev/null |& FileCheck %s
+; RUN: llc -march=x86-64 -tail-merge-threshold 2 < %s | 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
+; CHECK: callq bar
+; CHECK: callq bar
+; CHECK: callq bar
+; CHECK-NOT: callq
declare void @bar()