diff options
Diffstat (limited to 'src/passes/StackIR.cpp')
-rw-r--r-- | src/passes/StackIR.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/StackIR.cpp b/src/passes/StackIR.cpp index 52ea061a3..2434c44f6 100644 --- a/src/passes/StackIR.cpp +++ b/src/passes/StackIR.cpp @@ -169,7 +169,7 @@ private: values.clear(); } // This is something we should handle, look into it. - if (isConcreteType(inst->type)) { + if (inst->type.isConcrete()) { bool optimized = false; if (auto* get = inst->origin->dynCast<LocalGet>()) { // This is a potential optimization opportunity! See if we |