summaryrefslogtreecommitdiff
path: root/src/ir/properties.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/properties.h')
-rw-r--r--src/ir/properties.h2
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);
}