Commit a45fa2d8 authored by clemensh's avatar clemensh Committed by Commit bot

[wasm] Remove unused variable

TBR=titzer@chromium.org
NOTRY=true

Review-Url: https://codereview.chromium.org/2639903003
Cr-Commit-Position: refs/heads/master@{#42448}
parent 9091eb19
......@@ -205,7 +205,6 @@ bool IsBreakablePosition(Handle<WasmCompiledModule> compiled_module,
BytecodeIterator iterator(module_start + func.code_start_offset,
module_start + func.code_end_offset, &locals);
DCHECK_LT(0, locals.encoded_size);
uint32_t found_position = 0;
for (uint32_t offset : iterator.offsets()) {
if (offset > static_cast<uint32_t>(offset_in_func)) break;
if (offset == static_cast<uint32_t>(offset_in_func)) return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment