mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 00:30:37 +02:00
nv50/ir: fix memory value equality check
This commit is contained in:
parent
e3a3844e8d
commit
63ca1abcc4
1 changed files with 1 additions and 1 deletions
|
|
@ -508,7 +508,7 @@ ImmediateValue::equals(const Value *that, bool strict) const
|
|||
bool
|
||||
Symbol::equals(const Value *that, bool strict) const
|
||||
{
|
||||
if (this->reg.file != that->reg.file)
|
||||
if (reg.file != that->reg.file || reg.fileIndex != that->reg.fileIndex)
|
||||
return false;
|
||||
assert(that->asSym());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue