diff options
author | Beuc <beuc@beuc.net> | 2019-09-19 18:28:11 +0200 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2019-09-19 09:28:11 -0700 |
commit | aeaad27d41b8df5d8ec30e7136cc1b5ead89bbd2 (patch) | |
tree | 5333aff023dbbee8ade4a9d8f0d4d90f076450fc | |
parent | 3d7c4cfb41c4f34238dd6f42367747411ee6a478 (diff) | |
download | binaryen-aeaad27d41b8df5d8ec30e7136cc1b5ead89bbd2.tar.gz binaryen-aeaad27d41b8df5d8ec30e7136cc1b5ead89bbd2.tar.bz2 binaryen-aeaad27d41b8df5d8ec30e7136cc1b5ead89bbd2.zip |
Fix typo in Asyncify (#2346)
-rw-r--r-- | src/passes/Asyncify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<Walker> { 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; |