Skip to content

Commit 376c31f

Browse files
mi-acV8-internal LUCI CQ
authored andcommitted
Fix an unused-variable warning
Change-Id: I4e2111aca7b7619584bffe9d008c60f55da18999 Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/9122916 Auto-Submit: Michael Achenbach <machenbach@google.com> Reviewed-by: Matthias Liedtke <mliedtke@google.com> Commit-Queue: Matthias Liedtke <mliedtke@google.com>
1 parent 4dee437 commit 376c31f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/Fuzzilli/FuzzIL/JSTyper.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ public struct JSTyper: Analyzer {
802802
let isMemory64 = type(of: instr.input(0)).wasmMemoryType?.isMemory64 ?? false
803803
registerWasmMemoryUse(for: instr.input(0))
804804
setType(of: instr.output, to: isMemory64 ? .wasmi64 : .wasmi32)
805-
case .wasmJsCall(let op):
805+
case .wasmJsCall(_):
806806
let wasmSignature = type(of: instr.input(0)).wasmFunctionSignatureDefSignature
807807
let sigOutputTypes = wasmSignature.outputTypes
808808
assert(sigOutputTypes.count < 2, "multi-return js calls are not supported")

0 commit comments

Comments
 (0)