mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 15:30:50 +00:00
[qfcc] Do not unalias temporary operands
I don't remember why I did this originally, but it causes the dags code to lose the offset temp alias when accessing fields on structural temps (known to be the case for vectors (temp-component.r), and I seem to remember having problems with structs).
This commit is contained in:
parent
218481764b
commit
e195dba626
1 changed files with 0 additions and 2 deletions
|
@ -231,8 +231,6 @@ dag_node (operand_t *op)
|
|||
if (def->daglabel)
|
||||
node = def->daglabel->dagnode;
|
||||
} else if (op->op_type == op_temp) {
|
||||
while (op->tempop.alias)
|
||||
op = op->tempop.alias;
|
||||
if (op->tempop.daglabel)
|
||||
node = op->tempop.daglabel->dagnode;
|
||||
} else if (op->op_type == op_value) {
|
||||
|
|
Loading…
Reference in a new issue