From: Julian Seward Date: Thu, 29 May 2008 16:39:21 +0000 (+0000) Subject: Allow 64-byte line sizes (PA6T cpu). X-Git-Tag: svn/VALGRIND_3_4_1^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99e85f9fa6c68612e77aee6b4b64452088a8f023;p=thirdparty%2Fvalgrind.git Allow 64-byte line sizes (PA6T cpu). git-svn-id: svn://svn.valgrind.org/vex/trunk@1851 --- diff --git a/VEX/priv/guest-ppc/toIR.c b/VEX/priv/guest-ppc/toIR.c index 414c272a67..0ea60eae4b 100644 --- a/VEX/priv/guest-ppc/toIR.c +++ b/VEX/priv/guest-ppc/toIR.c @@ -5601,7 +5601,7 @@ static Bool dis_cache_manage ( UInt theInstr, } /* stay sane .. */ - vassert(lineszB == 32 || lineszB == 128); + vassert(lineszB == 32 || lineszB == 64 || lineszB == 128); switch (opc2) { //zz case 0x2F6: // dcba (Data Cache Block Allocate, PPC32 p380)