[llvm-commits] [test-suite] r51564 - in /test-suite/trunk: Makefile.programs SingleSource/Benchmarks/BenchmarkGame/n-body.c
Bill Wendling
isanbard at gmail.com
Sun May 25 22:51:07 PDT 2008
Author: void
Date: Mon May 26 00:51:07 2008
New Revision: 51564
URL: http://llvm.org/viewvc/llvm-project?rev=51564&view=rev
Log:
Enable remat in 2-address conversion.
Modified:
test-suite/trunk/Makefile.programs
test-suite/trunk/SingleSource/Benchmarks/BenchmarkGame/n-body.c
Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=51564&r1=51563&r2=51564&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Mon May 26 00:51:07 2008
@@ -205,7 +205,8 @@
endif#DISABLE_DIFFS
ifeq ($(ARCH),PowerPC)
-LLCBETAOPTION := -enable-sinking
+LLCBETAOPTION := -2-addr-remat
+#-enable-sinking
#-machine-licm
#-coalescer-commute-instrs
#--enable-tail-merge
@@ -220,7 +221,8 @@
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
-LLCBETAOPTION := -schedule-livein-copies
+LLCBETAOPTION := -2-addr-remat
+#-schedule-livein-copies
#-align-loops=false
#-enable-sinking
#-coalescer-commute-instrs
Modified: test-suite/trunk/SingleSource/Benchmarks/BenchmarkGame/n-body.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/BenchmarkGame/n-body.c?rev=51564&r1=51563&r2=51564&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/BenchmarkGame/n-body.c (original)
+++ test-suite/trunk/SingleSource/Benchmarks/BenchmarkGame/n-body.c Mon May 26 00:51:07 2008
@@ -138,4 +138,4 @@
advance(NBODIES, bodies, 0.01);
printf ("%.9f\n", energy(NBODIES, bodies));
return 0;
-}
\ No newline at end of file
+}
More information about the llvm-commits
mailing list