]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Handle Ity_I128 in sizeofIRType. (Florian Krohm, britzel@acm.org).
authorJulian Seward <jseward@acm.org>
Tue, 28 Sep 2010 15:20:47 +0000 (15:20 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 28 Sep 2010 15:20:47 +0000 (15:20 +0000)
Fixes #247875.

git-svn-id: svn://svn.valgrind.org/vex/trunk@2049

VEX/priv/ir_defs.c

index b73348785ca982e66ffeaae13f33294eb2cda49f..eabf831da581cebc4cdba78fa38c7fcba8d2b129 100644 (file)
@@ -3434,6 +3434,7 @@ Int sizeofIRType ( IRType ty )
       case Ity_I16:  return 2;
       case Ity_I32:  return 4;
       case Ity_I64:  return 8;
+      case Ity_I128: return 16;
       case Ity_F32:  return 4;
       case Ity_F64:  return 8;
       case Ity_V128: return 16;