mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1075266 - IonMonkey: Disable the assert that congruentTo is symmetric, for now. r=nbp
This commit is contained in:
parent
fdf237f791
commit
3011ab8dfc
@ -56,7 +56,13 @@ ValueNumberer::VisibleValues::ValueHasher::match(Key k, Lookup l)
|
||||
return false;
|
||||
|
||||
bool congruent = k->congruentTo(l); // Ask the values themselves what they think.
|
||||
MOZ_ASSERT(congruent == l->congruentTo(k), "congruentTo relation is not symmetric");
|
||||
#ifdef DEBUG
|
||||
if (congruent != l->congruentTo(k)) {
|
||||
JitSpew(JitSpew_GVN, " congruentTo relation is not symmetric between %s%u and %s%u!!",
|
||||
k->opName(), k->id(),
|
||||
l->opName(), l->id());
|
||||
}
|
||||
#endif
|
||||
return congruent;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user