mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 876458 - Fix MUnbox::congruentTo, r=jandem.
This commit is contained in:
parent
2c3afd1543
commit
c106ea366d
@ -1999,6 +1999,8 @@ class MUnbox : public MUnaryInstruction, public BoxInputsPolicy
|
||||
return mode() != Infallible;
|
||||
}
|
||||
bool congruentTo(MDefinition *const &ins) const {
|
||||
if (!ins->isUnbox() || ins->toUnbox()->mode() != mode())
|
||||
return false;
|
||||
return congruentIfOperandsEqual(ins);
|
||||
}
|
||||
AliasSet getAliasSet() const {
|
||||
|
Loading…
Reference in New Issue
Block a user