From 21fd2c448527036bac0bd3027466349a982c47a0 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Tue, 25 Jan 2022 15:14:22 +0100 Subject: [PATCH] Update to LLVM fix. --- wrapper/src/wrapper.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wrapper/src/wrapper.cpp b/wrapper/src/wrapper.cpp index 50fa24bd8..584a5266d 100644 --- a/wrapper/src/wrapper.cpp +++ b/wrapper/src/wrapper.cpp @@ -6,7 +6,7 @@ #define LINK_SIG \ bool link(llvm::ArrayRef args, llvm::raw_ostream &stdoutOS, \ llvm::raw_ostream &stderrOS, bool exitEarly, bool disableOutput); -#define CALL_ARGS arg_vector, false, output, output_err, false +#define CALL_ARGS arg_vector, output, output_err, false, false #else #define LINK_SIG \ bool link(llvm::ArrayRef args, bool canExitEarly, \ @@ -36,8 +36,7 @@ namespace lld { } namespace wasm { - bool link(llvm::ArrayRef args, bool canExitEarly, - llvm::raw_ostream &stdoutOS, llvm::raw_ostream &stderrOS); + LINK_SIG } }