diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-19 22:12:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-19 22:12:20 +0000 |
commit | fe95dae26bd97aa5730684db040cb162f321388b (patch) | |
tree | 6dd8d634f6b480e70f90dfe6ed0fdb216a6b94d0 /Makefile.common | |
parent | 8fc625836e42c721bf3279399ccbfdd9d6eb7c65 (diff) |
Fix warnings compiling C files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5600 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index eb33df9352..f13d412cd1 100644 --- a/Makefile.common +++ b/Makefile.common @@ -164,8 +164,8 @@ CompileP := $(Compile) $(CompileOptimizeOpts) -felide-constructors $(PROFILE) # 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 |