From 96562b0934f77adcfad6fca838dc5577d0bae086 Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Sat, 9 Aug 2014 08:13:19 +0000 Subject: [PATCH] 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 --- VEX/priv/guest_ppc_toIR.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2