[llvm-commits] CVS: llvm-test/Makefile.tests
Bill Wendling
isanbard at gmail.com
Mon Oct 9 11:24:17 PDT 2006
Changes in directory llvm-test:
Makefile.tests updated: 1.11 -> 1.12
---
Log message:
Reverting patch from the weekend so that we have something to compare
against for PR928: http://llvm.org/PR928 .
---
Diffs of the changes: (+4 -4)
Makefile.tests | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Index: llvm-test/Makefile.tests
diff -u llvm-test/Makefile.tests:1.11 llvm-test/Makefile.tests:1.12
--- llvm-test/Makefile.tests:1.11 Sun Oct 8 02:16:29 2006
+++ llvm-test/Makefile.tests Mon Oct 9 13:24:03 2006
@@ -50,19 +50,19 @@
# Compile from X.c to Output/X.ll
Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
- -$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
+ -$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
# Compile from X.cpp to Output/X.ll
Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
+ -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
# Compile from X.cc to Output/X.ll
Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
+ -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
# Compile from X.C to Output/X.ll
Output/%.ll: %.C $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
+ -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -O0 -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