aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-01-09 23:00:01 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-01-09 23:00:01 +0200
commit2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c (patch)
tree3cef502c8bd0dfad3b6a119efef6b71bba8d1e5b /include
parent598be4cd1bdd79e4859ae30291f4d65682cc672a (diff)
downloadfwd-2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c.tar.gz
fwd-2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c.zip
initial ptr stuff
Diffstat (limited to 'include')
-rw-r--r--include/fwd/ast.h19
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;