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/Stacker/lib | |
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/Stacker/lib')
-rw-r--r-- | llvm/projects/Stacker/lib/runtime/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/projects/Stacker/lib/runtime/Makefile b/llvm/projects/Stacker/lib/runtime/Makefile index d3ebf18fc55..e10b476c6b0 100644 --- a/llvm/projects/Stacker/lib/runtime/Makefile +++ b/llvm/projects/Stacker/lib/runtime/Makefile @@ -12,3 +12,6 @@ DONT_BUILD_RELINKED = 1 MODULE_NAME = stkr_runtime include $(LEVEL)/Makefile.common + +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) |