From 6919c1b53f435316f559631e530930940e0d2295 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 2 Jun 2006 00:39:08 +0000 Subject: [PATCH] Suppress -pedantic warnings about print("%a") llvm-svn: 28650 --- tools/llvm2cpp/Makefile | 3 +++ 1 file changed, 3 insertions(+) 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))