Skip to content

Commit

Permalink
PPU LLVM: Log unsupported relocation opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 authored and Nekotekina committed Mar 26, 2020
1 parent ccc7cb7 commit 453478c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/PPUTranslator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Function* PPUTranslator::Translate(const ppu_function& info)
if (m_rel)
{
// This is very bad. m_rel is normally set to nullptr after a relocation is handled (so it wasn't)
ppu_log.error("LLVM: [0x%x] Unsupported relocation(%u) in '%s'. Please report.", rel_found->first, m_rel->type, m_info.name);
ppu_log.error("LLVM: [0x%x] Unsupported relocation(%u) in '%s' (opcode=0x%x). Please report.", rel_found->first, m_rel->type, m_info.name, op);
return nullptr;
}
}
Expand Down

0 comments on commit 453478c

Please sign in to comment.