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

Unified Diff: src/interpreter/interpreter.cc

Issue 2445403002: [interpreter] Partially revert handling of --debug-code. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/interpreter.cc
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
index 536e5cde283ff3ada68205fdee52ef6012c499aa..c9f06e4e008819a27c7545ec121cc9e46cf5b5d6 100644
--- a/src/interpreter/interpreter.cc
+++ b/src/interpreter/interpreter.cc
@@ -223,10 +223,9 @@ bool Interpreter::IsDispatchTableInitialized() {
bool Interpreter::ShouldInitializeDispatchTable() {
if (FLAG_trace_ignition || FLAG_trace_ignition_codegen ||
- FLAG_trace_ignition_dispatches || FLAG_debug_code) {
+ FLAG_trace_ignition_dispatches) {
// Regenerate table to add bytecode tracing operations, print the assembly
- // code generated by TurboFan, instrument handlers with dispatch counters,
- // or insert debugging code into the bytecode handlers.
+ // code generated by TurboFan or instrument handlers with dispatch counters.
return true;
}
return !IsDispatchTableInitialized();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698