summaryrefslogtreecommitdiff
path: root/src/ir/flat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/flat.h')
-rw-r--r--src/ir/flat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ir/flat.h b/src/ir/flat.h
index 199d5e35e..b9d272bf5 100644
--- a/src/ir/flat.h
+++ b/src/ir/flat.h
@@ -75,11 +75,11 @@ inline void verifyFlatness(Function* func) {
if (isControlFlowStructure(curr)) {
verify(!isConcreteType(curr->type),
"control flow structures must not flow values");
- } else if (curr->is<SetLocal>()) {
+ } else if (curr->is<LocalSet>()) {
verify(!isConcreteType(curr->type), "tees are not allowed, only sets");
} else {
for (auto* child : ChildIterator(curr)) {
- verify(child->is<Const>() || child->is<GetLocal>() ||
+ verify(child->is<Const>() || child->is<LocalGet>() ||
child->is<Unreachable>(),
"instructions must only have const, local.get, or unreachable "
"as children");