diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-06-01 01:55:21 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-06-01 01:55:21 +0000 |
commit | a62f097c96d45447129072d539d9896392606709 (patch) | |
tree | b5dc797f99dc624cedc286eaaaa22aa75eedfda1 /llvm/projects/sample | |
parent | 08f1030658fe8c827ee8b4acce44bd60e6376f40 (diff) | |
download | bcm5719-llvm-a62f097c96d45447129072d539d9896392606709.tar.gz bcm5719-llvm-a62f097c96d45447129072d539d9896392606709.zip |
For 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.
llvm-svn: 28614
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/lib/sample/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/projects/sample/lib/sample/Makefile b/llvm/projects/sample/lib/sample/Makefile index 140d7d6703d..6b1ea05361b 100644 --- a/llvm/projects/sample/lib/sample/Makefile +++ b/llvm/projects/sample/lib/sample/Makefile @@ -19,3 +19,5 @@ LOADABLE_MODULE=1 # include $(LEVEL)/Makefile.common +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) |