diff options
| author | 2025-11-24 08:27:17 +0100 | |
|---|---|---|
| committer | 2025-11-24 08:27:22 +0100 | |
| commit | d0dde5bc533b321ad35113d45c6b167d8f9e9ffc (patch) | |
| tree | 908c08343cdc4409abda5f30ff431173d24dcb1c /ir | |
| parent | 6464ec389e2da17b1674858858406e211b16e5f6 (diff) | |
ir.h: tweak mkintrin() definition to work with tinycc
Diffstat (limited to 'ir')
| -rw-r--r-- | ir/ir.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -254,7 +254,7 @@ union ref mkdatref(const char *name, union type ctype, uint siz, uint align, con const char *xcon2sym(int ref); struct instr mkalloca(uint siz, uint align); union ref mkcallarg(union irtype ret, uint narg, int vararg); -#define mkintrin(B, C, N) mkinstr(Ointrin, C, {.t=RICON,B}, mkcallarg((union irtype){{0}},N,-1)) +#define mkintrin(B, C, N) mkinstr(Ointrin, C, {{.t=RICON,B}}, mkcallarg((union irtype){{0}},N,-1)) union ref mkaddr(struct addr); void addpred(struct block *blk, struct block *p); |