We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6c8472 commit 8725169Copy full SHA for 8725169
1 file changed
src/passes/Flatten.cpp
@@ -462,7 +462,9 @@ struct Flatten
462
463
void doWalkFunction(Function* curr) {
464
// Lower things before the main walk.
465
- LowerUnflattenable(*getModule(), getPassOptions()).walk(curr->body);
+ LowerUnflattenable(*getModule(), getPassOptions()).walkFunction(curr);
466
+
467
+std::cout << "after " << *curr << '\n';
468
469
WalkerPass<
470
ExpressionStackWalker<Flatten, UnifiedExpressionVisitor<Flatten>>>::
0 commit comments