From: Rafael Espindola Date: Tue, 14 Jun 2011 22:24:32 +0000 (+0000) Subject: Check the llc output. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=1c61990b2daa77f3444eb2b6d8157cdc805ce22f;p=oota-llvm.git Check the llc output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133021 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/tail-threshold.ll b/test/CodeGen/X86/tail-threshold.ll index 9541c01a4f0..6c7d5aaeccf 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()