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

Chris Lattner lattner at cs.uiuc.edu
Mon Jan 16 17:20:52 PST 2006



Changes in directory llvm-test:

Makefile.tests updated: 1.5 -> 1.6
---
Log message:

Pass -emit-llvm to llvm-gcc.  This flag is ignored by the old front-end, and
tells the new front-end to emit a .ll (instead of a .s file) file like the old 
one does.


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

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


Index: llvm-test/Makefile.tests
diff -u llvm-test/Makefile.tests:1.5 llvm-test/Makefile.tests:1.6
--- llvm-test/Makefile.tests:1.5	Tue Mar  8 16:58:33 2005
+++ llvm-test/Makefile.tests	Mon Jan 16 19:20:40 2006
@@ -50,15 +50,15 @@
 
 # Compile from X.c to Output/X.ll
 Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
-	-$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
+	-$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ -emit-llvm
 
 # Compile from X.cpp to Output/X.ll
 Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
-	-$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
+	-$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ -emit-llvm
 
 # Compile from X.cc to Output/X.ll
 Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
-	-$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
+	-$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ -emit-llvm
 
 # LLVM Assemble from Output/X.ll to Output/X.bc.  Output/X.ll must have come
 # from GCC output, so use GCCAS.






More information about the llvm-commits mailing list