diff options
| author | WormHeamer | 2025-10-27 22:23:34 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-10-27 22:23:34 -0400 |
| commit | 2624602b6936f8ea5e060928ee5a5ed3f0f3e453 (patch) | |
| tree | bbddbd72de73291ece2e7ac29ec4c536462b3bb8 /ir.h | |
| parent | d69ebf5d418677e0d24d7a87af975e24be3788af (diff) | |
remove NodeInputs, NodeOutputs (just NodeList)
Diffstat (limited to 'ir.h')
| -rw-r--r-- | ir.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -101,7 +101,6 @@ typedef enum { const char *node_type_name(NodeType t); typedef DYNARR(struct Node *) NodeList; -typedef NodeList NodeInputs, NodeOutputs; typedef struct Node { int id, refs; @@ -111,8 +110,8 @@ typedef struct Node { int walked; NodeType op; LexSpan src_pos; - NodeInputs in; /* note: index 0 used for control flow */ - NodeOutputs out; + NodeList in; /* note: index 0 used for control flow */ + NodeList out; union { Type type; Value val; |
