asserting in the presence of V128 immediates, which is a regression
in valgrind 3.2.2.
git-svn-id: svn://svn.valgrind.org/vex/trunk@1731
case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 );
case Ico_F64: return toBool( c1->Ico.F64 == c2->Ico.F64 );
+ case Ico_F64i: return toBool( c1->Ico.F64i == c2->Ico.F64i );
+ case Ico_V128: return toBool( c1->Ico.V128 == c2->Ico.V128 );
default: vpanic("eqIRConst");
}
}