Changes in directory llvm/runtime/libdummy:

Makefile updated: 1.7 -> 1.8
---
Log message:

For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One notable exception: lib/Target/CBackend/Writer.cpp. These warnings are
left on as a reminder to developers to clean them up.


---
Diffs of the changes:  (+2 -0)

 Makefile |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/runtime/libdummy/Makefile
diff -u llvm/runtime/libdummy/Makefile:1.7 llvm/runtime/libdummy/Makefile:1.8
--- llvm/runtime/libdummy/Makefile:1.7  Tue Dec 21 23:57:33 2004
+++ llvm/runtime/libdummy/Makefile      Wed May 31 20:55:21 2006
@@ -15,3 +15,5 @@
 
 include $(LEVEL)/Makefile.common
 
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to