diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/fwd/ast.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/include/fwd/ast.h b/include/fwd/ast.h index 8eb39b7..726b5e3 100644 --- a/include/fwd/ast.h +++ b/include/fwd/ast.h @@ -255,8 +255,23 @@ static inline bool is_lvalue(struct ast *node) /** @todo others */ return true; - default: - return false; + default: return false; + } + + return false; +} + +static inline bool is_trivially_copyable(struct type *type) +{ + switch (type->k) { + case TYPE_REF: + case TYPE_PTR: + case TYPE_FUNC_PTR: + case TYPE_PURE_CLOSURE: + /** @todo primitive types */ + return true; + + default: return false; } return false; |