wasm: fix --trace_wasm_decoder flag

Copy-pasta error.

R= titzer@chromium.org

Review URL: https://codereview.chromium.org/1778383003

Cr-Commit-Position: refs/heads/master@{#34686}
This commit is contained in:
jfb 2016-03-10 09:04:44 -08:00 committed by Commit bot
parent 29a4856de4
commit d81c3b4a78

View File

@ -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(...)