From 2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c Mon Sep 17 00:00:00 2001 From: Kimplul Date: Thu, 9 Jan 2025 23:00:01 +0200 Subject: initial ptr stuff --- include/fwd/ast.h | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'include') 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; -- cgit v1.2.3