diff options
Diffstat (limited to 'src/ir/properties.h')
-rw-r--r-- | src/ir/properties.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/properties.h b/src/ir/properties.h index b664ab008..bb88af6c5 100644 --- a/src/ir/properties.h +++ b/src/ir/properties.h @@ -159,7 +159,7 @@ inline Expression* getFallthrough(Expression* curr) { if (curr->type == unreachable) { return curr; } - if (auto* set = curr->dynCast<SetLocal>()) { + if (auto* set = curr->dynCast<LocalSet>()) { if (set->isTee()) { return getFallthrough(set->value); } |