]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
eqIRConst: handle Ico_V256.
authorJulian Seward <jseward@acm.org>
Wed, 18 Jul 2012 11:48:23 +0000 (11:48 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 18 Jul 2012 11:48:23 +0000 (11:48 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@2438

VEX/priv/ir_defs.c

index dc0fc33a86cd4c8fceaa1544e61f37c917fab208..db50d7f542669529b43c7fa617917dee6bf9e7f2 100644 (file)
@@ -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");
    }
 }