From: Julian Seward Date: Wed, 18 Jul 2012 11:48:23 +0000 (+0000) Subject: eqIRConst: handle Ico_V256. X-Git-Tag: svn/VALGRIND_3_8_1^2~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff29307765fcb3049066d60c055752592af928da;p=thirdparty%2Fvalgrind.git eqIRConst: handle Ico_V256. git-svn-id: svn://svn.valgrind.org/vex/trunk@2438 --- diff --git a/VEX/priv/ir_defs.c b/VEX/priv/ir_defs.c index dc0fc33a86..db50d7f542 100644 --- a/VEX/priv/ir_defs.c +++ b/VEX/priv/ir_defs.c @@ -3876,6 +3876,7 @@ Bool eqIRConst ( IRConst* c1, IRConst* c2 ) 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 ); + case Ico_V256: return toBool( c1->Ico.V256 == c2->Ico.V256 ); default: vpanic("eqIRConst"); } }