Index: src/wasm/wasm-module.cc |
diff --git a/src/wasm/wasm-module.cc b/src/wasm/wasm-module.cc |
index 4d8b60fdf2269b302d6992c4cd165e1b5a7fb5e1..990cddbfbe190aac723545a91e138836f2b69083 100644 |
--- a/src/wasm/wasm-module.cc |
+++ b/src/wasm/wasm-module.cc |
@@ -1016,7 +1016,7 @@ static Handle<Code> UnwrapImportWrapper(Handle<Object> target) { |
code = handle(target); |
} |
} |
- DCHECK(found == 1); |
+ DCHECK_EQ(1, found); |
return code; |
} |
@@ -1026,7 +1026,6 @@ static Handle<Code> CompileImportWrapper(Isolate* isolate, int index, |
Handle<String> module_name, |
MaybeHandle<String> import_name, |
ModuleOrigin origin) { |
- Handle<Code> code; |
WasmFunction* other_func = GetWasmFunctionForImportWrapper(isolate, target); |
if (other_func) { |
if (sig->Equals(other_func->sig)) { |