From: Julian Seward Date: Mon, 14 Oct 2013 11:40:24 +0000 (+0000) Subject: PPC32/64: Allow 16 byte icache lines. X-Git-Tag: svn/VALGRIND_3_9_0^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57fc51267961803098f31b6ee0cf3f6f576b056d;p=thirdparty%2Fvalgrind.git PPC32/64: Allow 16 byte icache lines. Partial fix for #308135. (christophe.leroy@c-s.fr) git-svn-id: svn://svn.valgrind.org/vex/trunk@2785 --- diff --git a/VEX/priv/guest_ppc_toIR.c b/VEX/priv/guest_ppc_toIR.c index 3c3a79c6b5..98c90bffa1 100644 --- a/VEX/priv/guest_ppc_toIR.c +++ b/VEX/priv/guest_ppc_toIR.c @@ -7102,7 +7102,7 @@ static Bool dis_cache_manage ( UInt theInstr, } /* stay sane .. */ - vassert(lineszB == 32 || lineszB == 64 || lineszB == 128); + vassert(lineszB == 16 || lineszB == 32 || lineszB == 64 || lineszB == 128); switch (opc2) { //zz case 0x2F6: // dcba (Data Cache Block Allocate, PPC32 p380)