]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
isBogusAtom: handle missing case Ico_F32.
authorJulian Seward <jseward@acm.org>
Thu, 20 Nov 2014 10:15:17 +0000 (10:15 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 20 Nov 2014 10:15:17 +0000 (10:15 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14740

memcheck/mc_translate.c

index 1f7402dd6c22e158022c2fdc8ad8ef68b25c3fa0..e4516c769aea0446ad2f70c6083a5990be6bebf3 100644 (file)
@@ -6067,6 +6067,7 @@ static Bool isBogusAtom ( IRAtom* at )
       case Ico_U16:  n = (ULong)con->Ico.U16; break;
       case Ico_U32:  n = (ULong)con->Ico.U32; break;
       case Ico_U64:  n = (ULong)con->Ico.U64; break;
+      case Ico_F32:  return False;
       case Ico_F64:  return False;
       case Ico_F32i: return False;
       case Ico_F64i: return False;