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

Chris Lattner lattner at cs.uiuc.edu
Tue Oct 22 18:36:01 PDT 2002


Changes in directory llvm:

Makefile.common updated: 1.64 -> 1.65

---
Log message:

Disable optimization that doesn't apply to C


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.64 llvm/Makefile.common:1.65
--- llvm/Makefile.common:1.64	Tue Oct 22 18:28:23 2002
+++ llvm/Makefile.common	Tue Oct 22 18:35:28 2002
@@ -163,7 +163,7 @@
 # Compile a c file, don't link...
 CompileC  := $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts)
 CompileCG := $(CompileC) -g  -D_DEBUG
-CompileCO := $(CompileC) -O3 -DNDEBUG -finline-functions -felide-constructors -fshort-enums ## DISABLE -freg-struct-return because of gcc3.2 bug
+CompileCO := $(CompileC) -O3 -DNDEBUG -finline-functions -fshort-enums ## DISABLE -freg-struct-return because of gcc3.2 bug
 CompileCP := $(CompileCO) $(PROFILE)
 
 





More information about the llvm-commits mailing list