[llvm-commits] CVS: llvm-test/Makefile.tests
Bill Wendling
isanbard at gmail.com
Sun Oct 8 00:16:45 PDT 2006
Changes in directory llvm-test:
Makefile.tests updated: 1.10 -> 1.11
---
Log message:
Temporary revert of the -O0 patch to test PR928: http://llvm.org/PR928 .
---
Diffs of the changes: (+6 -4)
Makefile.tests | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
Index: llvm-test/Makefile.tests
diff -u llvm-test/Makefile.tests:1.10 llvm-test/Makefile.tests:1.11
--- llvm-test/Makefile.tests:1.10 Wed Oct 4 17:37:55 2006
+++ llvm-test/Makefile.tests Sun Oct 8 02:16:29 2006
@@ -34,6 +34,8 @@
.PRECIOUS: Output/%.llvm.bc
.PRECIOUS: Output/%.llvm
+LCCFLAGS += -O2
+LCXXFLAGS += -O2
LLCFLAGS =
FAILURE = $(LLVM_SRC_ROOT)/test/Failure.sh
TESTRUNR = @echo Running test: $<; \
@@ -48,19 +50,19 @@
# Compile from X.c to Output/X.ll
Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
- -$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
+ -$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
# Compile from X.cpp to Output/X.ll
Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
+ -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
# Compile from X.cc to Output/X.ll
Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
+ -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -S $< -o $@ -emit-llvm
# Compile from X.C to Output/X.ll
Output/%.ll: %.C $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -O0 -S $< -o $@ -emit-llvm
+ -$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) $(TARGET_FLAGS) -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