diff options
| author | 2025-11-12 19:27:57 +0100 | |
|---|---|---|
| committer | 2025-11-12 19:27:57 +0100 | |
| commit | 1547c07639be7bd83cbc9a21a2036bc96b6fa05d (patch) | |
| tree | c6d32d348a098cf6e7f41feedd94e48af749df05 /ir | |
| parent | 94dd33965b9d9b8c87fa8cb40a8088bfbb1f5e42 (diff) | |
ir: fix addcon equality check..
Diffstat (limited to 'ir')
| -rw-r--r-- | ir/ir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -96,7 +96,7 @@ addcon(const struct xcon *con) assert(con->issym || con->isdat || con->cls); for (;; ++i) { i &= arraylength(conht) - 1; - if (!conht[i].issym && !conht[i].cls) { + if (!conht[i].issym && !conht[i].isdat && !conht[i].cls) { conht[i] = *con; ++nconht; return i; |