Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1289)

Unified Diff: tools/gcmole/Makefile

Issue 6973063: Extend GCMole with poor man's data flow analysis to catch dead raw pointer vars. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/gcmole/Makefile
diff --git a/tools/gcmole/Makefile b/tools/gcmole/Makefile
index 23c029c2dc3aca8e246f1c1682c08d52a29b5180..4bf6a502564bf6ec1bc62beb7eae077d68e62320 100644
--- a/tools/gcmole/Makefile
+++ b/tools/gcmole/Makefile
@@ -32,8 +32,8 @@ CLANG_INCLUDE:=$(LLVM_SRC_ROOT)/tools/clang/include
libgcmole.so: gcmole.cc
g++ -I$(LLVM_INCLUDE) -I$(CLANG_INCLUDE) -I. -D_DEBUG -D_GNU_SOURCE \
- -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 \
- -fomit-frame-pointer -fno-exceptions -fno-rtti -fPIC \
+ -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -03 \
Mads Ager (chromium) 2011/05/16 06:10:27 Accidental edit?
+ -fomit-frame-pointer -fno-exceptions -fno-rtti -fPIC \
-Woverloaded-virtual -Wcast-qual -fno-strict-aliasing \
-pedantic -Wno-long-long -Wall \
-W -Wno-unused-parameter -Wwrite-strings \

Powered by Google App Engine
This is Rietveld 408576698