diff options
Diffstat (limited to 'src/tools/execution-results.h')
-rw-r--r-- | src/tools/execution-results.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/execution-results.h b/src/tools/execution-results.h index afd7a78c1..94447ab4d 100644 --- a/src/tools/execution-results.h +++ b/src/tools/execution-results.h @@ -39,7 +39,7 @@ struct LoggingExternalInterface : public ShellExternalInterface { LoggingExternalInterface(Loggings& loggings) : loggings(loggings) {} - Literals callImport(Function* import, LiteralList& arguments) override { + Literals callImport(Function* import, Literals& arguments) override { if (import->module == "fuzzing-support") { std::cout << "[LoggingExternalInterface logging"; loggings.push_back(Literal()); // buffer with a None between calls @@ -239,7 +239,7 @@ struct ExecutionResults { FunctionResult run(Function* func, Module& wasm, ModuleInstance& instance) { try { - LiteralList arguments; + Literals arguments; // init hang support, if present if (auto* ex = wasm.getExportOrNull("hangLimitInitializer")) { instance.callFunction(ex->value, arguments); |