|
From: <sv...@va...> - 2013-10-14 11:40:39
|
Author: sewardj
Date: Mon Oct 14 11:40:24 2013
New Revision: 2785
Log:
PPC32/64: Allow 16 byte icache lines.
Partial fix for #308135. (chr...@c-...)
Modified:
trunk/priv/guest_ppc_toIR.c
Modified: trunk/priv/guest_ppc_toIR.c
==============================================================================
--- trunk/priv/guest_ppc_toIR.c (original)
+++ trunk/priv/guest_ppc_toIR.c Mon Oct 14 11:40:24 2013
@@ -7102,7 +7102,7 @@
}
/* 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)
|