From: Philippe Waroquiers Date: Sat, 9 Aug 2014 08:13:19 +0000 (+0000) Subject: Unbreak the build X-Git-Tag: svn/VALGRIND_3_10_1^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96562b0934f77adcfad6fca838dc5577d0bae086;p=thirdparty%2Fvalgrind.git Unbreak the build priv/guest_ppc_toIR.c: In function disInstr_PPC: priv/guest_ppc_toIR.c:20160:7: error: dis undeclared (first use in this function) dis.continueAt = 0; ^ git-svn-id: svn://svn.valgrind.org/vex/trunk@2916 --- diff --git a/VEX/priv/guest_ppc_toIR.c b/VEX/priv/guest_ppc_toIR.c index ef2625525c..d810feba4d 100644 --- a/VEX/priv/guest_ppc_toIR.c +++ b/VEX/priv/guest_ppc_toIR.c @@ -20157,7 +20157,7 @@ DisResult disInstr_PPC ( IRSB* irsb_IN, dres.whatNext = Dis_StopHere; dres.jk_StopHere = Ijk_NoDecode; dres.len = 0; - dis.continueAt = 0; + dres.continueAt = 0; return dres; }