--- trunk/src/cpus/cpu_ppc_instr.c 2007/10/08 16:18:51 14 +++ trunk/src/cpus/cpu_ppc_instr.c 2007/10/08 16:19:11 18 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_ppc_instr.c,v 1.18 2005/09/27 01:00:36 debug Exp $ + * $Id: cpu_ppc_instr.c,v 1.20 2005/10/27 14:01:13 debug Exp $ * * POWER/PowerPC instructions. * @@ -781,7 +781,7 @@ cpu->cd.ppc.ll_addr = addr; cpu->cd.ppc.ll_bit = 1; } else { - int old_so = cpu->cd.ppc.xer & PPC_XER_SO; + uint32_t old_so = cpu->cd.ppc.xer & PPC_XER_SO; if (!rc) { fatal("sc: rc-bit not set?\n"); exit(1); @@ -1522,7 +1522,7 @@ */ X(tlbie) { - cpu->invalidate_translation_caches_paddr(cpu, 0, INVALIDATE_ALL); + cpu->invalidate_translation_caches(cpu, 0, INVALIDATE_ALL); }