diff --git a/src/mono/wasm/runtime/jiterpreter-trace-generator.ts b/src/mono/wasm/runtime/jiterpreter-trace-generator.ts index 38e96471de4eb2640e2f3ffabf2a4b6ff76c19cf..8f44a3b9eb51ff2e04bf3bcaa21592c4d9b68582 100644 --- a/src/mono/wasm/runtime/jiterpreter-trace-generator.ts +++ b/src/mono/wasm/runtime/jiterpreter-trace-generator.ts @@ -2396,6 +2396,7 @@ function emit_branch ( // Simple branches are enabled and this is a forward branch. We // don't need to wrap things in a block here, we can just exit // the current branch block after updating eip + builder.branchTargets.add(destination); builder.ip_const(destination); builder.local("eip", WasmOpcode.set_local); builder.appendU8(WasmOpcode.br);