diff options
| -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; |
