diff options
Diffstat (limited to 'src/ir/linear-execution.h')
-rw-r--r-- | src/ir/linear-execution.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ir/linear-execution.h b/src/ir/linear-execution.h index c6593bd64..e8b1923aa 100644 --- a/src/ir/linear-execution.h +++ b/src/ir/linear-execution.h @@ -171,6 +171,12 @@ struct LinearExecutionWalker : public PostWalker<SubType, VisitorType> { self->pushTask(SubType::scan, &curr->cast<Try>()->body); break; } + case Expression::Id::TryTableId: { + self->pushTask(SubType::doVisitTryTable, currp); + self->pushTask(SubType::doNoteNonLinear, currp); + self->pushTask(SubType::scan, &curr->cast<TryTable>()->body); + break; + } case Expression::Id::ThrowId: { self->pushTask(SubType::doVisitThrow, currp); self->pushTask(SubType::doNoteNonLinear, currp); |