[llvm-commits] [test-suite] r55905 - /test-suite/trunk/Makefile.programs
Evan Cheng
evan.cheng at apple.com
Mon Sep 8 07:35:19 PDT 2008
Author: evancheng
Date: Mon Sep 8 09:35:18 2008
New Revision: 55905
URL: http://llvm.org/viewvc/llvm-project?rev=55905&view=rev
Log:
Don't do -aggressive-remat as llcbeta. It's causing llc to hang on sqlite3. Switch to -fast-isel on x86, -machine-licm on ppc.
Modified:
test-suite/trunk/Makefile.programs
Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=55905&r1=55904&r2=55905&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Mon Sep 8 09:35:18 2008
@@ -205,8 +205,8 @@
endif#DISABLE_DIFFS
ifeq ($(ARCH),PowerPC)
-LLCBETAOPTION := -aggressive-remat
-#-machine-licm
+LLCBETAOPTION := -machine-licm
+#-aggressive-remat
#-enable-sinking
#--enable-tail-merge
#--enable-ppc-preinc
@@ -220,7 +220,8 @@
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
-LLCBETAOPTION := -aggressive-remat
+LLCBETAOPTION := -fast-isel
+#-aggressive-remat
#-machine-licm
#-new-spilling-heuristic
#-enable-value-prop
More information about the llvm-commits
mailing list