From 99e85f9fa6c68612e77aee6b4b64452088a8f023 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Thu, 29 May 2008 16:39:21 +0000 Subject: [PATCH] Allow 64-byte line sizes (PA6T cpu). git-svn-id: svn://svn.valgrind.org/vex/trunk@1851 --- 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 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) -- 2.47.2