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

Unified Diff: src/wasm/encoder.cc

Issue 1778383003: wasm: fix --trace_wasm_decoder flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/wasm/encoder.cc
diff --git a/src/wasm/encoder.cc b/src/wasm/encoder.cc
index 8e18dd8450a0fc5c7006fa47a4253def93e096e6..92e6b1145cba4670e204046bb209674a8bca51f5 100644
--- a/src/wasm/encoder.cc
+++ b/src/wasm/encoder.cc
@@ -19,7 +19,7 @@
#if DEBUG
#define TRACE(...) \
do { \
- if (FLAG_trace_wasm_decoder) PrintF(__VA_ARGS__); \
+ if (FLAG_trace_wasm_encoder) PrintF(__VA_ARGS__); \
} while (false)
#else
#define TRACE(...)
« 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