fix allocation ordering bug in rega
commit87dc3ea290a4ba75f153c5bb8b9fb87ec548e64f
authorQuentin Carbonneaux <quentin@c9x.me>
Mon, 21 Nov 2022 13:08:08 +0000 (21 14:08 +0100)
committerQuentin Carbonneaux <quentin@c9x.me>
Mon, 21 Nov 2022 13:16:19 +0000 (21 14:16 +0100)
tree9e63c0a05a9ce1f79720eda3b15cd801726844ab
parent0db06dad63e02b619671bfb3dd25fc92c0856319
fix allocation ordering bug in rega

When we process one block, we
start by allocating registers
for all the temporaries live
at the exit of the block.

Before this patch we processed
temps first, then in doblk() we
would mark globally live registers
allocated. This meant that temps
could get wrongly assigned a live
register.

The fix is simple: we now process
registers first at block exits,
then allocate temps.
rega.c