[llvm-commits] [test-suite] r70271 - /test-suite/trunk/Makefile.programs
Bill Wendling
isanbard at gmail.com
Mon Apr 27 17:21:35 PDT 2009
Author: void
Date: Mon Apr 27 19:21:35 2009
New Revision: 70271
URL: http://llvm.org/viewvc/llvm-project?rev=70271&view=rev
Log:
Change the '-fast' flag to '-O0' to coincide with the llc flag change.
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=70271&r1=70270&r2=70271&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Mon Apr 27 19:21:35 2009
@@ -211,7 +211,7 @@
endif#DISABLE_DIFFS
ifeq ($(ARCH),PowerPC)
-LLCBETAOPTION := -regalloc=local -fast
+LLCBETAOPTION := -regalloc=local -O0
#--enable-ppc-preinc
#-aggressive-remat
#--enable-tail-merge
@@ -237,9 +237,9 @@
#-schedule-livein-copies
#-new-coalescer-heuristic=true
#-tailcallopt
-#-regalloc=local -fast
+#-regalloc=local -O0
#-disable-fp-elim
-#-regalloc=bigblock -fast
+#-regalloc=bigblock -O0
endif
ifeq ($(ARCH),Sparc)
LLCBETAOPTION := -enable-sparc-v9-insts
More information about the llvm-commits
mailing list