summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-01 06:12:21 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-01 06:12:21 +0000
commit177284ce8976d840e6093c6555dacc13f3ed0c4f (patch)
tree1fcd9efadac8857b2fea825484e61af4736eaaf0 /lib/CodeGen/Makefile
parentff99366919b5909ab0ae2df6495e5de2044b938d (diff)
downloadllvm-177284ce8976d840e6093c6555dacc13f3ed0c4f.tar.gz
llvm-177284ce8976d840e6093c6555dacc13f3ed0c4f.tar.bz2
llvm-177284ce8976d840e6093c6555dacc13f3ed0c4f.tar.xz
Prevent the -pedantic option from causing Mac OS/X build problems:
LiveIntervalAnalysis.cpp:218: error: floating constant exceeds range of 'double' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28620 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Makefile')
-rw-r--r--lib/CodeGen/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/Makefile b/lib/CodeGen/Makefile
index 744f8e937b..e77a53a337 100644
--- a/lib/CodeGen/Makefile
+++ b/lib/CodeGen/Makefile
@@ -12,3 +12,6 @@ LIBRARYNAME = LLVMCodeGen
PARALLEL_DIRS = SelectionDAG
include $(LEVEL)/Makefile.common
+
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))