[llvm-commits] CVS: llvm-test/Makefile.programs

Chris Lattner lattner at cs.uiuc.edu
Sat Sep 2 10:24:54 PDT 2006



Changes in directory llvm-test:

Makefile.programs updated: 1.223 -> 1.224
---
Log message:

Fix PR891: http://llvm.org/PR891 


---
Diffs of the changes:  (+3 -3)

 Makefile.programs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm-test/Makefile.programs
diff -u llvm-test/Makefile.programs:1.223 llvm-test/Makefile.programs:1.224
--- llvm-test/Makefile.programs:1.223	Tue Aug 29 15:55:09 2006
+++ llvm-test/Makefile.programs	Sat Sep  2 12:24:34 2006
@@ -203,7 +203,7 @@
 LLCBETAOPTION := -sched=simple 
 endif
 ifeq ($(ARCH),x86)
-LLCBETAOPTION := -enable-x86-fastcc
+LLCBETAOPTION := -regalloc=local -fast
 endif
 ifeq ($(ARCH),Sparc)
 LLCBETAOPTION := -enable-sparc-v9-insts
@@ -266,11 +266,11 @@
 # Targets to get the pass arguments that gccas and gccld are using...
 Output/gccas-pass-args: $(LGCCAS) Output/.dir
 	-$(LGCCAS) /dev/null -o /dev/null -debug-pass=Arguments > $@.1 2>&1
-	sed 's/Pass Arguments: //' < $@.1 > $@
+	sed 's/Pass Arguments: //' < $@.1 | sed 's/-emitbytecode//'> $@
 Output/gccld-pass-args: $(LGCCLDPROG) Output/.dir
 	$(LLVMAS) < /dev/null > Output/gccld.test.bc
 	$(LGCCLD) Output/gccld.test.bc -o Output/gccld.test-out -debug-pass=Arguments > $@.1 2>&1
-	sed 's/Pass Arguments: //' < $@.1 > $@
+	sed 's/Pass Arguments: //' < $@.1 | sed 's/-emitbytecode//' | > $@
 
 # If the program requires exception handling support, enable (potentially
 # expensive) support for it.






More information about the llvm-commits mailing list