mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Get the tempop alias's type from the right place.
Temporyary aliases use only the low-level type, not the full type descriptor. Fixes the segfault when dumping dot graphs.
This commit is contained in:
parent
513d67c6c3
commit
adf3e36aee
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ operand_string (operand_t *op)
|
|||
case op_temp:
|
||||
if (op->o.tempop.alias)
|
||||
return va ("<tmp %s %p:%d:%p:%d>",
|
||||
pr_type_name[op->o.tempop.type->type],
|
||||
pr_type_name[op->type],
|
||||
op, op->o.tempop.users,
|
||||
op->o.tempop.alias,
|
||||
op->o.tempop.alias->o.tempop.users);
|
||||
|
|
Loading…
Reference in a new issue