From: Reid Spencer Date: Fri, 2 Jun 2006 00:39:08 +0000 (+0000) Subject: Suppress -pedantic warnings about print("%a") X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=409411ea266ce04149fc8e705e2e13f5f98e1e6d;p=oota-llvm.git Suppress -pedantic warnings about print("%a") git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28650 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm2cpp/Makefile b/tools/llvm2cpp/Makefile index 7e778d723d2..98948033e24 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))