aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-02 00:39:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-02 00:39:08 +0000
commit409411ea266ce04149fc8e705e2e13f5f98e1e6d (patch)
tree8eb4118a3951572a6358fc3e79f143ee5d109222
parent6574994397576c3d3809d3665b9d34d65809238f (diff)
Suppress -pedantic warnings about print("%a")
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28650 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/llvm2cpp/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/llvm2cpp/Makefile b/tools/llvm2cpp/Makefile
index 7e778d723d..98948033e2 100644
--- a/tools/llvm2cpp/Makefile
+++ b/tools/llvm2cpp/Makefile
@@ -12,3 +12,6 @@ USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMCore.a \
LLVMSupport.a LLVMbzip2.a LLVMSystem.a
include $(LEVEL)/Makefile.common
+
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))