From 75f29be136823d491edae9a55e9f077b69f54027 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 1 Jun 2006 05:49:51 +0000 Subject: [PATCH] For PR786: Don't warn about -pedantic errors. Add a note to the PR instead. llvm-svn: 28616 --- llvm/lib/Target/CBackend/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/lib/Target/CBackend/Makefile b/llvm/lib/Target/CBackend/Makefile index 9b26d8b8c451..9e00bdb1426e 100644 --- a/llvm/lib/Target/CBackend/Makefile +++ b/llvm/lib/Target/CBackend/Makefile @@ -10,3 +10,6 @@ LEVEL = ../../.. LIBRARYNAME = LLVMCBackend include $(LEVEL)/Makefile.common + +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))