summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2011-10-05 13:37:17 -0700
committer buzbee <buzbee@google.com> 2011-10-05 13:37:17 -0700
commite3de7495be03c16d6862359d618a2dcb3f3abf9b (patch)
tree99b17ed768142a3746a5eea9a352d84db217a54b
parent99f272349671e14ceada1cc795ce4c66a38ddd3e (diff)
Compiler - switch default for null invoke test
A while back we added a debugging option to test for a null code address on invokes, and display a debug message if one was encountered. Time to turn it off by default (it can still be enabled via compilerDebugFlags). Change-Id: Id73596aa1f288a2d0b3ce53894b48385de712988
-rw-r--r--src/compiler/Frontend.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc
index be3a6052e0..880341aa06 100644
--- a/src/compiler/Frontend.cc
+++ b/src/compiler/Frontend.cc
@@ -33,8 +33,7 @@ uint32_t compilerOptimizerDisableFlags = 0 | // Disable specific optimizations
0;
uint32_t compilerDebugFlags = 0 | // Enable debug/testing modes
- // TODO: disable all of these by default in ToT
- (1 << kDebugDisplayMissingTargets) |
+ //(1 << kDebugDisplayMissingTargets) |
//(1 << kDebugVerbose) |
//(1 << kDebugDumpCFG) |
//(1 << kDebugSlowFieldPath) |