]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Merge, from trunk, r14740.
authorJulian Seward <jseward@acm.org>
Sun, 23 Nov 2014 18:28:24 +0000 (18:28 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 23 Nov 2014 18:28:24 +0000 (18:28 +0000)
14740  isBogusAtom: handle missing case Ico_F32.
(needed by 3021)

git-svn-id: svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_10_BRANCH@14774

memcheck/mc_translate.c

index 5efa5ade1328f4afc9057b61c8ec907c33e92883..11a16889f5f1a69bf950eb8064aa2acc7efecbc9 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;