summaryrefslogtreecommitdiff
path: root/docs/type_system/ir.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-07-13 17:02:34 -0400
committernodist <kevin.comas.git@gmail.com>2026-07-13 17:02:34 -0400
commit4c008d258f6fd23fd64e2a6b059448748d7f7d24 (patch)
tree6db6b1d6526c17ce338a5146706bd9c5d8e5929e /docs/type_system/ir.md
parentf1773b4959a35f28b37617f775f4fc1683e4f654 (diff)
every type has access to its parent
Diffstat (limited to 'docs/type_system/ir.md')
-rw-r--r--docs/type_system/ir.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/type_system/ir.md b/docs/type_system/ir.md
index 77c6139..4b9ea44 100644
--- a/docs/type_system/ir.md
+++ b/docs/type_system/ir.md
@@ -3,7 +3,7 @@
---
```text
-Ir[[IR_NAME] Address[3]]
+Ir[[IR_NAME] Address[6]]
```
`IR_NAME` is a single value
@@ -12,6 +12,7 @@ Ir[[IR_NAME] Address[3]]
```c
typedef struct {
- kpl_type *address[3];
+ ssize_t label;
+ kpl_type *address[6];
} kpl_type_body_ir;
```