[llvm-commits] CVS: llvm/lib/CodeGen/Makefile

Reid Spencer reid at x10sys.com
Wed May 31 23:12:33 PDT 2006



Changes in directory llvm/lib/CodeGen:

Makefile updated: 1.26 -> 1.27
---
Log message:

Prevent the -pedantic option from causing Mac OS/X build problems:
LiveIntervalAnalysis.cpp:218: error: floating constant exceeds range of 'double'



---
Diffs of the changes:  (+3 -0)

 Makefile |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/CodeGen/Makefile
diff -u llvm/lib/CodeGen/Makefile:1.26 llvm/lib/CodeGen/Makefile:1.27
--- llvm/lib/CodeGen/Makefile:1.26	Wed May 31 20:30:26 2006
+++ llvm/lib/CodeGen/Makefile	Thu Jun  1 01:12:21 2006
@@ -12,3 +12,6 @@
 PARALLEL_DIRS = SelectionDAG
 
 include $(LEVEL)/Makefile.common
+
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))






More information about the llvm-commits mailing list