File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ struct WasmFunctionEntity {
263263 intercepting: engine. interceptor != nil
264264 )
265265 let iseq = try code. withValue { code in
266- try translator. translate ( code: code, instance : instance )
266+ try translator. translate ( code: code)
267267 }
268268 self . code = . compiled( iseq)
269269 return iseq
Original file line number Diff line number Diff line change @@ -1117,7 +1117,6 @@ struct InstructionTranslator<Context: TranslatorContext>: InstructionVisitor {
11171117 /// Translate a Wasm expression into a sequence of instructions.
11181118 mutating func translate(
11191119 code: Code ,
1120- instance: InternalInstance
11211120 ) throws -> InstructionSequence {
11221121 if intercepting {
11231122 // Emit `onEnter` instruction at the beginning of the function
You can’t perform that action at this time.
0 commit comments