[llvm-commits] [test-suite] r42661 - /test-suite/trunk/Makefile.programs
Evan Cheng
evan.cheng at apple.com
Fri Oct 5 16:13:21 PDT 2007
Author: evancheng
Date: Fri Oct 5 18:13:21 2007
New Revision: 42661
URL: http://llvm.org/viewvc/llvm-project?rev=42661&view=rev
Log:
Commute x86 cmove instructions by swapping the operands and change the condition
to its inverse.
Testing this as llcbeta
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=42661&r1=42660&r2=42661&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Fri Oct 5 18:13:21 2007
@@ -221,7 +221,8 @@
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
-LLCBETAOPTION := -regalloc=local -fast
+LLCBETAOPTION := -enable-x86-commute-cmove
+#-regalloc=local -fast
#-disable-rematerialization
#-disable-fp-elim
#-regalloc=bigblock -fast
More information about the llvm-commits
mailing list