On 11/26/25 14:21, Philippe Mathieu-Daudé wrote:
@@ -342,9 +357,10 @@ void helper_icbi(CPUPPCState *env, target_ulong addr)
  void helper_icbiep(CPUPPCState *env, target_ulong addr)
  {
  #if !defined(CONFIG_USER_ONLY)
+    MemOpIdx oi = make_memop_idx(MO_UL | MO_UNALN, PPC_TLB_EPID_LOAD);
      /* See comments above */
      addr &= ~(env->dcache_line_size - 1);
-    cpu_ldl_mmuidx_ra(env, addr, PPC_TLB_EPID_LOAD, GETPC());
+    cpu_ldl_mmu(env, addr, oi, GETPC());
  #endif
  }

Missing MO_[TBL]E.

r~

Reply via email to