diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-11-02 23:56:21 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-11-02 23:56:21 +0000 |
commit | cb67d99001a344029619b2b5b59ed7ca43a85f3a (patch) | |
tree | 45df2b9c53a6f34b666e0db4fb9aa9e308251073 /llvm/lib/CodeGen | |
parent | a1fde82b6ba1d5639424d35c51dfa95760f57261 (diff) | |
download | bcm5719-llvm-cb67d99001a344029619b2b5b59ed7ca43a85f3a.tar.gz bcm5719-llvm-cb67d99001a344029619b2b5b59ed7ca43a85f3a.zip |
Make CodeGen libs -pedantic clean.
llvm-svn: 31387
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/DwarfWriter.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/CodeGen/Makefile | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index e44328d232a..40518eb2093 100644 --- a/llvm/lib/CodeGen/DwarfWriter.cpp +++ b/llvm/lib/CodeGen/DwarfWriter.cpp @@ -688,7 +688,7 @@ public: /// Profile - Used to gather unique data for the value folding set. /// - virtual void DIEBlock::Profile(FoldingSetNodeID &ID) { + virtual void Profile(FoldingSetNodeID &ID) { ID.AddInteger(isBlock); DIE::Profile(ID); } diff --git a/llvm/lib/CodeGen/Makefile b/llvm/lib/CodeGen/Makefile index 62ef1ad727d..a2ad0fd49cf 100644 --- a/llvm/lib/CodeGen/Makefile +++ b/llvm/lib/CodeGen/Makefile @@ -13,6 +13,3 @@ PARALLEL_DIRS = SelectionDAG BUILD_ARCHIVE = 1 include $(LEVEL)/Makefile.common - -CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) -CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) |