summaryrefslogtreecommitdiff
path: root/includes/compiler/CInit.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-12-29 12:32:55 +0000
committerAsh Wolf <ninji@wuffs.org>2022-12-29 12:32:55 +0000
commitfcfbafff31869ed808bff0639532db1828660e92 (patch)
tree7425b346b031c4cb47a06250b3f6f950374d44ae /includes/compiler/CInit.h
parentbc1321735c15104ffad195e1509cab5f3a044260 (diff)
downloadMWCC-fcfbafff31869ed808bff0639532db1828660e92.tar.gz
MWCC-fcfbafff31869ed808bff0639532db1828660e92.zip
dump lots more code
Diffstat (limited to 'includes/compiler/CInit.h')
-rw-r--r--includes/compiler/CInit.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/compiler/CInit.h b/includes/compiler/CInit.h
index 9b1c24b..e6e3d61 100644
--- a/includes/compiler/CInit.h
+++ b/includes/compiler/CInit.h
@@ -14,12 +14,12 @@ typedef void (*InsertExprCB)(ENode *expr);
typedef ENode *(*RegisterObjectCB)(Type *type, Object *obj, SInt32 offset, void *);
typedef ENode *(*TempNodeCB)(Type *type, Boolean flag);
-typedef struct OLinkList {
- struct OLinkList *next;
- Object *obj;
+struct OLinkList {
+ OLinkList *next;
+ Object *obj; // the object containing a relocation
SInt32 offset;
SInt32 somevalue;
-} OLinkList;
+};
typedef struct PooledString {
struct PooledString *next;