diff options
| author | 2026-02-28 20:38:55 +0100 | |
|---|---|---|
| committer | 2026-02-28 20:38:55 +0100 | |
| commit | f06da11d8524a9eb7fe984171d4462cef8eac2e6 (patch) | |
| tree | 0050bede4ec0e9939e4a5f98be089a539d5810d2 /ir/dump.c | |
| parent | 3d1efdcc77de5ce8f3279bd22b0a510a699229ea (diff) | |
ir: make address ref hash table resizable
Would hit the limit on very large functions (thanks csmith).
Diffstat (limited to 'ir/dump.c')
| -rw-r--r-- | ir/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -137,7 +137,7 @@ dumpref(enum op o, union ref ref) break; case RADDR: { - const struct addr *addr = &addrht[ref.i]; + const struct addr *addr = &addrtab.p[ref.i]; bool k = 0; bfmt(out, "addr ["); if ((k = addr->base.bits)) dumpref(0, addr->base); |