|
From: <sv...@va...> - 2014-11-23 18:28:31
|
Author: sewardj
Date: Sun Nov 23 18:28:24 2014
New Revision: 14774
Log:
Merge, from trunk, r14740.
14740 isBogusAtom: handle missing case Ico_F32.
(needed by 3021)
Modified:
branches/VALGRIND_3_10_BRANCH/ (props changed)
branches/VALGRIND_3_10_BRANCH/memcheck/mc_translate.c
Modified: branches/VALGRIND_3_10_BRANCH/memcheck/mc_translate.c
==============================================================================
--- branches/VALGRIND_3_10_BRANCH/memcheck/mc_translate.c (original)
+++ branches/VALGRIND_3_10_BRANCH/memcheck/mc_translate.c Sun Nov 23 18:28:24 2014
@@ -6067,6 +6067,7 @@
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;
|