From: Carl Love Date: Fri, 8 Aug 2014 22:26:31 +0000 (+0000) Subject: This commit is for Bugzilla 334834. X-Git-Tag: svn/VALGRIND_3_10_1^2~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a640e66570731b8feb48beca6957b4d06fc3b648;p=thirdparty%2Fvalgrind.git This commit is for Bugzilla 334834. The compiler is generating a message "dres.continueAt’ may be used uninitialized in this function". Setting dres.continueAT to zero since this is an error case and we should not be continuing. git-svn-id: svn://svn.valgrind.org/vex/trunk@2915 --- diff --git a/VEX/priv/guest_ppc_toIR.c b/VEX/priv/guest_ppc_toIR.c index ee11473adb..ef2625525c 100644 --- a/VEX/priv/guest_ppc_toIR.c +++ b/VEX/priv/guest_ppc_toIR.c @@ -20157,6 +20157,7 @@ DisResult disInstr_PPC ( IRSB* irsb_IN, dres.whatNext = Dis_StopHere; dres.jk_StopHere = Ijk_NoDecode; dres.len = 0; + dis.continueAt = 0; return dres; }