| Index: test/fuzzer/wasm-code.cc
|
| diff --git a/test/fuzzer/wasm-code.cc b/test/fuzzer/wasm-code.cc
|
| index 8e3628dbba82970ed11b480d8b1dd359b1d9c2e6..5d79bdafcc0ef666e8943017431f9c7b4d808436 100644
|
| --- a/test/fuzzer/wasm-code.cc
|
| +++ b/test/fuzzer/wasm-code.cc
|
| @@ -82,7 +82,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
| int32_t result_compiled;
|
| {
|
| v8::internal::Handle<v8::internal::Object> arguments[] = {
|
| - v8::internal::handle(v8::internal::Smi::FromInt(1), i_isolate)};
|
| + v8::internal::handle(v8::internal::Smi::FromInt(1), i_isolate),
|
| + v8::internal::handle(v8::internal::Smi::FromInt(2), i_isolate),
|
| + v8::internal::handle(v8::internal::Smi::FromInt(3), i_isolate)};
|
| result_compiled = testing::CallWasmFunctionForTesting(
|
| i_isolate, instance, compiler_thrower, "main", arraysize(arguments),
|
| arguments, v8::internal::wasm::ModuleOrigin::kWasmOrigin);
|
|
|