]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
PPC32/64: Allow 16 byte icache lines.
authorJulian Seward <jseward@acm.org>
Mon, 14 Oct 2013 11:40:24 +0000 (11:40 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 14 Oct 2013 11:40:24 +0000 (11:40 +0000)
Partial fix for #308135.  (christophe.leroy@c-s.fr)

git-svn-id: svn://svn.valgrind.org/vex/trunk@2785

VEX/priv/guest_ppc_toIR.c

index 3c3a79c6b5acc02a77c3fa2e44154118dc002366..98c90bffa1b7bde8d798b6149008a6a0d1af5fa6 100644 (file)
@@ -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)