Bug 1075266 - IonMonkey: Disable the assert that congruentTo is symmetric, for now. r=nbp

This commit is contained in:
Dan Gohman 2014-10-08 15:04:11 -07:00
parent 6f5bb65d78
commit 7804d9f0bd

View File

@ -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;
}