]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
This commit is for Bugzilla 334834.
authorCarl Love <cel@us.ibm.com>
Fri, 8 Aug 2014 22:26:31 +0000 (22:26 +0000)
committerCarl Love <cel@us.ibm.com>
Fri, 8 Aug 2014 22:26:31 +0000 (22:26 +0000)
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

VEX/priv/guest_ppc_toIR.c

index ee11473adb25f7ed4571a8258a6f8219ca0fe68c..ef2625525cf431ff397fd0a6b0b70a22e7bf8fc9 100644 (file)
@@ -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;
    }