[llvm-commits] CVS: llvm-test/Makefile.tests Makefile.rules
Chris Lattner
lattner at cs.uiuc.edu
Tue Mar 8 14:58:48 PST 2005
Changes in directory llvm-test:
Makefile.tests updated: 1.4 -> 1.5
Makefile.rules updated: 1.7 -> 1.8
---
Log message:
Turn off warnings for programs in llvm-test. We are aware of the fact that
they are gross and crufty, they should not need to match the standards of the
main LLVM codebase.
---
Diffs of the changes: (+3 -3)
Makefile.rules | 2 +-
Makefile.tests | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm-test/Makefile.tests
diff -u llvm-test/Makefile.tests:1.4 llvm-test/Makefile.tests:1.5
--- llvm-test/Makefile.tests:1.4 Fri Jan 21 14:34:00 2005
+++ llvm-test/Makefile.tests Tue Mar 8 16:58:33 2005
@@ -34,8 +34,8 @@
.PRECIOUS: Output/%.llvm.bc
.PRECIOUS: Output/%.llvm
-LCCFLAGS += -O2 -Wall
-LCXXFLAGS += -O2 -Wall
+LCCFLAGS += -O2
+LCXXFLAGS += -O2
LLCFLAGS =
FAILURE = $(LLVM_SRC_ROOT)/test/Failure.sh
TESTRUNR = @echo Running test: $<; \
Index: llvm-test/Makefile.rules
diff -u llvm-test/Makefile.rules:1.7 llvm-test/Makefile.rules:1.8
--- llvm-test/Makefile.rules:1.7 Fri Jan 21 14:34:00 2005
+++ llvm-test/Makefile.rules Tue Mar 8 16:58:33 2005
@@ -308,7 +308,7 @@
# Pull in limit macros from stdint.h, even in C++:
CPPFLAGS += -D__STDC_LIMIT_MACROS
-CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
+CompileCommonOpts :=
CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions
#
More information about the llvm-commits
mailing list