mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
Mark the correct operand as live
This fixes vecexpr (and possibly other cases).
This commit is contained in:
parent
6e21c3ae2e
commit
d6d3027411
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ dag_create (flownode_t *flownode)
|
|||
if (s->type == st_flow || s->type == st_func)
|
||||
for (i = 0; i < 3; i++)
|
||||
if (children[i])
|
||||
dag_make_var_live (live_vars, operands[i]);
|
||||
dag_make_var_live (live_vars, operands[i + 1]);
|
||||
op = opcode_label (dag, s->opcode, s->expr);
|
||||
n = children[0];
|
||||
if (s->type != st_assign
|
||||
|
|
Loading…
Reference in a new issue