X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=deps%2Flightrec%2Fblockcache.c;h=d72d64e0033468b35101c9b37d434c0d5f6a71e8;hb=5937ccce520c4bddc986f741737465e2e8d94605;hp=bb58cdb16d4f0d8a8230b4ecb0e4600c3df7040f;hpb=ba3814c189d3bd2332b66fb6c633a7d028e618fe;p=pcsx_rearmed.git diff --git a/deps/lightrec/blockcache.c b/deps/lightrec/blockcache.c index bb58cdb1..d72d64e0 100644 --- a/deps/lightrec/blockcache.c +++ b/deps/lightrec/blockcache.c @@ -101,7 +101,7 @@ void lightrec_unregister_block(struct blockcache *cache, struct block *block) } } - pr_err("Block at PC 0x%x is not in cache\n", block->pc); + pr_err("Block at "PC_FMT" is not in cache\n", block->pc); } static bool lightrec_block_is_old(const struct lightrec_state *state, @@ -142,7 +142,7 @@ static void lightrec_free_blocks(struct blockcache *cache, if (ENABLE_THREADED_COMPILER) lightrec_recompiler_remove(state->rec, block); - pr_debug("Freeing outdated block at PC 0x%08x\n", block->pc); + pr_debug("Freeing outdated block at "PC_FMT"\n", block->pc); remove_from_code_lut(cache, block); lightrec_unregister_block(cache, block); lightrec_free_block(state, block);