[llvm-commits] CVS: llvm/Makefile.common

Chris Lattner lattner at cs.uiuc.edu
Wed Feb 19 16:13:01 PST 2003


Changes in directory llvm:

Makefile.common updated: 1.78 -> 1.79

---
Log message:

Fix warnings compiling C files


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.78 llvm/Makefile.common:1.79
--- llvm/Makefile.common:1.78	Thu Feb 13 10:56:30 2003
+++ llvm/Makefile.common	Wed Feb 19 16:12:20 2003
@@ -164,8 +164,8 @@
 # Compile a c file, don't link...
 CompileC  := $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts)
 CompileCG := $(CompileC) -g  -D_DEBUG
-CompileCO := $(CompileC) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer
-CompileCP := $(CompileC) $(CompileOptimizeOpts) -felide-constructors $(PROFILE)
+CompileCO := $(CompileC) $(CompileOptimizeOpts) -fomit-frame-pointer
+CompileCP := $(CompileC) $(CompileOptimizeOpts) $(PROFILE)
 
 
 # Link final executable





More information about the llvm-commits mailing list