summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-24 22:59:07 +0000
committerChris Lattner <sabre@nondot.org>2006-05-24 22:59:07 +0000
commitf07ddcd38b7a4d7afc62960a20b0fc16b86ff81d (patch)
tree787d39123768248ff8f2c35d709666ba9981809d /Makefile.rules
parentc98deeb887502ab497b8829785b93c601e4e0800 (diff)
downloadllvm-f07ddcd38b7a4d7afc62960a20b0fc16b86ff81d.tar.gz
llvm-f07ddcd38b7a4d7afc62960a20b0fc16b86ff81d.tar.bz2
llvm-f07ddcd38b7a4d7afc62960a20b0fc16b86ff81d.tar.xz
Remove flags implied by -O3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28456 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 96f2343fe0..c4148be9db 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -200,7 +200,7 @@ install-bytecode:: install-bytecode-local
ifdef ENABLE_PROFILING
BuildMode := Profile
- CXX.Flags := -O3 -felide-constructors -finline-functions -pg
+ CXX.Flags := -O3 -pg
C.Flags := -O3 -pg
LD.Flags := -O3 -pg
else
@@ -213,7 +213,7 @@ else
OmitFramePointer := -fomit-frame-pointer
endif
endif
- CXX.Flags := -O3 -finline-functions -felide-constructors $(OmitFramePointer)
+ CXX.Flags := -O3 $(OmitFramePointer)
C.Flags := -O3 $(OmitFramePointer)
LD.Flags := -O3
else