diff options
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index a6ffd4cc2..4a79d9caf 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -101,7 +101,7 @@ std::string getSig(Function* func) { } std::string getSig(Type results, Type params) { - assert(!results.isMulti()); + assert(!results.isTuple()); std::string sig; sig += getSig(results); for (const auto& param : params) { |