We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d7c4cf commit aeaad27Copy full SHA for aeaad27
1 file changed
src/passes/Asyncify.cpp
@@ -397,7 +397,7 @@ class ModuleAnalyzer {
397
struct Walker : PostWalker<Walker> {
398
void visitCall(Call* curr) {
399
if (curr->isReturn) {
400
- Fatal() << "tail calls not yet supported in aysncify";
+ Fatal() << "tail calls not yet supported in asyncify";
401
}
402
auto* target = module->getFunction(curr->target);
403
if (target->imported() && target->module == ASYNCIFY) {
@@ -426,7 +426,7 @@ class ModuleAnalyzer {
426
427
void visitCallIndirect(CallIndirect* curr) {
428
429
430
431
if (canIndirectChangeState) {
432
info->canChangeState = true;
0 commit comments