Skip to content

Commit f895c0e

Browse files
committed
fix
1 parent ed34a15 commit f895c0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/wasm-traversal.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,10 +411,10 @@ struct PostWalker : public Walker<SubType, VisitorType> {
411411
&Walker<SubType, VisitorType>::doVisit##id) { \
412412
if constexpr (IsLeaf<id>::value && \
413413
&SubType::scan == &PostWalker<SubType, VisitorType>::scan) { \
414-
SubType::doVisit##id(self, currp); \
415-
return; \
416-
} \
417-
self->pushTask(SubType::doVisit##id, currp); \
414+
SubType::doVisit##id(self, currp); \
415+
return; \
416+
} \
417+
self->pushTask(SubType::doVisit##id, currp); \
418418
} \
419419
[[maybe_unused]] auto* cast = curr->cast<id>();
420420
#endif // constexpr

0 commit comments

Comments
 (0)