diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-24 22:59:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-24 22:59:07 +0000 |
commit | f07ddcd38b7a4d7afc62960a20b0fc16b86ff81d (patch) | |
tree | 787d39123768248ff8f2c35d709666ba9981809d | |
parent | c98deeb887502ab497b8829785b93c601e4e0800 (diff) |
Remove flags implied by -O3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28456 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 4 |
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 |