summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/isel-sink3.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-26 22:16:44 +0000
committerChris Lattner <sabre@nondot.org>2008-11-26 22:16:44 +0000
commitab8b794a789390ca2f1ad5372d4813911e306663 (patch)
treeda121d9683eb95a21739c6ba50b428782345147d /test/CodeGen/X86/isel-sink3.ll
parentbaa39d866410d1f1d7ef6795f82c968bd94ea4a0 (diff)
downloadllvm-ab8b794a789390ca2f1ad5372d4813911e306663.tar.gz
llvm-ab8b794a789390ca2f1ad5372d4813911e306663.tar.bz2
llvm-ab8b794a789390ca2f1ad5372d4813911e306663.tar.xz
Turn on my codegen prepare heuristic by default. It doesn't affect
performance in most cases on the Grawp tester, but does speed some things up (like shootout/hash by 15%). This also doesn't impact compile time in a noticable way on the Grawp tester. It also, of course, gets the testcase it was designed for right :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/isel-sink3.ll')
-rw-r--r--test/CodeGen/X86/isel-sink3.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/isel-sink3.ll b/test/CodeGen/X86/isel-sink3.ll
index a0fba3acc5..75c23c3435 100644
--- a/test/CodeGen/X86/isel-sink3.ll
+++ b/test/CodeGen/X86/isel-sink3.ll
@@ -1,5 +1,5 @@
-; RUN: llvm-as < %s | llc -enable-smarter-addr-folding | grep {addl.(%eax), %ecx}
-; RUN: llvm-as < %s | llc -enable-smarter-addr-folding | not grep leal
+; RUN: llvm-as < %s | llc | grep {addl.(%eax), %ecx}
+; RUN: llvm-as < %s | llc | not grep leal
; this should not sink %1 into bb1, that would increase reg pressure.
; rdar://6399178