diff options
Diffstat (limited to 'src/ir/properties.h')
-rw-r--r-- | src/ir/properties.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ir/properties.h b/src/ir/properties.h index bb88af6c5..f4c9686b6 100644 --- a/src/ir/properties.h +++ b/src/ir/properties.h @@ -187,6 +187,10 @@ inline Expression* getFallthrough(Expression* curr) { return curr; } +inline bool isConstantExpression(const Expression* curr) { + return curr->is<Const>() || curr->is<RefNull>() || curr->is<RefFunc>(); +} + } // namespace Properties } // namespace wasm |