]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Merge r1731 (Fill in missing cases in eqIRConst.)
authorJulian Seward <jseward@acm.org>
Mon, 29 Jan 2007 00:58:10 +0000 (00:58 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 29 Jan 2007 00:58:10 +0000 (00:58 +0000)
git-svn-id: svn://svn.valgrind.org/vex/branches/VEX_3_2_BRANCH@1732

VEX/priv/ir/irdefs.c

index 1108733a553b131499083fe31df10ea37ac046a7..e875de249f7c4a4e429965d9a3409d024e19c739 100644 (file)
@@ -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");
    }
 }