diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-08 04:34:51 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-08 04:34:51 +0000 |
| commit | cd7d6cf6a6d01336012c27ea7f8b53a394ceda3f (patch) | |
| tree | 3a84070cdba16f6ed77617fb817c5a58a2429395 | |
| parent | cc52c2ce8aad523affcae0e15c20f9d4b7ecccc3 (diff) | |
| download | bcm5719-llvm-cd7d6cf6a6d01336012c27ea7f8b53a394ceda3f.tar.gz bcm5719-llvm-cd7d6cf6a6d01336012c27ea7f8b53a394ceda3f.zip | |
Remove -Woverloaded-virtual usage that was committed by accident.
llvm-svn: 18615
| -rw-r--r-- | llvm/Makefile.rules | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index f5cfb0a1578..9abc4afc235 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -146,24 +146,21 @@ install-bytecode:: install-bytecode-local # Variables derived from configuration we are building #-------------------------------------------------------------------- -CommonCXXOpts := -Woverloaded-virtual - ifdef ENABLE_PROFILING BuildMode := Profile - CXX.Flags := -O3 -DNDEBUG $(CommonCXXOpts) -felide-constructors \ - -finline-functions -pg + CXX.Flags := -O3 -DNDEBUG -felide-constructors -finline-functions -pg C.Flags := -O3 -DNDEBUG -pg LD.Flags := -O3 -DNDEBUG -pg else ifdef ENABLE_OPTIMIZED BuildMode := Release - CXX.Flags := -O3 -DNDEBUG $(CommonCXXOpts) -finline-functions \ + CXX.Flags := -O3 -DNDEBUG -finline-functions \ -felide-constructors -fomit-frame-pointer C.Flags := -O3 -DNDEBUG -fomit-frame-pointer LD.Flags := -O3 -DNDEBUG else BuildMode := Debug - CXX.Flags := -g -D_DEBUG $(CommonCXXOpts) + CXX.Flags := -g -D_DEBUG C.Flags := -g -D_DEBUG LD.Flags := -g -D_DEBUG KEEP_SYMBOLS := 1 |

