From: Julian Seward Date: Mon, 29 Jan 2007 00:58:10 +0000 (+0000) Subject: Merge r1731 (Fill in missing cases in eqIRConst.) X-Git-Tag: svn/VALGRIND_3_2_3^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de92f9a561932bde437b006cf2161545b64cc36f;p=thirdparty%2Fvalgrind.git Merge r1731 (Fill in missing cases in eqIRConst.) git-svn-id: svn://svn.valgrind.org/vex/branches/VEX_3_2_BRANCH@1732 --- diff --git a/VEX/priv/ir/irdefs.c b/VEX/priv/ir/irdefs.c index 1108733a55..e875de249f 100644 --- a/VEX/priv/ir/irdefs.c +++ b/VEX/priv/ir/irdefs.c @@ -2573,6 +2573,8 @@ Bool eqIRConst ( IRConst* c1, IRConst* c2 ) 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"); } }