diff options
| author | 2023-06-18 09:05:15 +0200 | |
|---|---|---|
| committer | 2023-06-18 09:05:15 +0200 | |
| commit | 04de327e9ac7c1502716336e9bbfecf544b31126 (patch) | |
| tree | 52c1644c5b10c492037d8853b07155c8d334329b /irdump.c | |
| parent | 962ad175aee634274b408ead38b13e6bc90e2fe7 (diff) | |
ELF output static data
Diffstat (limited to 'irdump.c')
| -rw-r--r-- | irdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ static int nextdat; static void pridat(const struct irdat *dat) { - efmt("%s .%d(align %d, size %d):\n\t", dat->mut ? "dat" : "rodat", dat - dattab.p, dat->align, dat->siz); + efmt("%s %'s(align %d, size %d):\n\t", dat->mut ? "dat" : "rodat", dat->name, dat->align, dat->siz); assert(!dat->syms); if (dat->siz <= 8) { efmt("b "); |