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.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/ir/properties.h b/src/ir/properties.h
index 1dbb0e096..b14910c5b 100644
--- a/src/ir/properties.h
+++ b/src/ir/properties.h
@@ -71,7 +71,18 @@ inline bool isNamedControlFlow(Expression* curr) {
}
inline bool isConstantExpression(const Expression* curr) {
- return curr->is<Const>() || curr->is<RefNull>() || curr->is<RefFunc>();
+ if (curr->is<Const>() || curr->is<RefNull>() || curr->is<RefFunc>()) {
+ return true;
+ }
+ if (auto* tuple = curr->dynCast<TupleMake>()) {
+ for (auto* op : tuple->operands) {
+ if (!op->is<Const>() && !op->is<RefNull>() && !op->is<RefFunc>()) {
+ return false;
+ }
+ }
+ return true;
+ }
+ return false;
}
// Check if an expression is a sign-extend, and if so, returns the value