diff options
| author | 2025-10-19 11:06:58 +0200 | |
|---|---|---|
| committer | 2025-10-19 11:06:58 +0200 | |
| commit | 9bf5c97d3b5391c6cf3757629d09a53403a64f45 (patch) | |
| tree | e8ca609e27d72b4011be6803a45d5d3773a05b05 /c/c.h | |
| parent | dea8fd171acb54b6d9685422d5e391fb55074008 (diff) | |
c irgen fixes
Diffstat (limited to 'c/c.h')
| -rw-r--r-- | c/c.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -36,7 +36,14 @@ struct expr { } fld; /* EGETF */ }; uvlong u; vlong i; double f; /* ENUMLIT */ - struct bytes s; /* ESTRLIT */ + struct { + union { + uchar *p; + ushort *w16; + uint *w32; + }; + uint n; + } s; /* ESTRLIT */ struct decl *sym; /* ESYM */ struct init *init; /* EINIT */ }; |