From aeaad27d41b8df5d8ec30e7136cc1b5ead89bbd2 Mon Sep 17 00:00:00 2001 From: Beuc Date: Thu, 19 Sep 2019 18:28:11 +0200 Subject: Fix typo in Asyncify (#2346) --- src/passes/Asyncify.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/passes/Asyncify.cpp b/src/passes/Asyncify.cpp index bca9941ae..cda9f2d17 100644 --- a/src/passes/Asyncify.cpp +++ b/src/passes/Asyncify.cpp @@ -397,7 +397,7 @@ public: struct Walker : PostWalker { void visitCall(Call* curr) { if (curr->isReturn) { - Fatal() << "tail calls not yet supported in aysncify"; + Fatal() << "tail calls not yet supported in asyncify"; } auto* target = module->getFunction(curr->target); if (target->imported() && target->module == ASYNCIFY) { @@ -426,7 +426,7 @@ public: } void visitCallIndirect(CallIndirect* curr) { if (curr->isReturn) { - Fatal() << "tail calls not yet supported in aysncify"; + Fatal() << "tail calls not yet supported in asyncify"; } if (canIndirectChangeState) { info->canChangeState = true; -- cgit v1.2.3