mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
LLVM: remove false alarm errors
Writable sections ARE supported
This commit is contained in:
parent
bb524db236
commit
b2f29cd4d4
2 changed files with 2 additions and 3 deletions
|
@ -244,7 +244,6 @@ struct MemoryManager : llvm::RTDyldMemoryManager
|
|||
|
||||
if (!is_ro)
|
||||
{
|
||||
LOG_ERROR(GENERAL, "LLVM: Writeable data section not supported!");
|
||||
}
|
||||
|
||||
utils::memory_commit(s_next, size);
|
||||
|
|
|
@ -3956,7 +3956,7 @@ void PPUTranslator::MTFSFI(ppu_opcode_t op)
|
|||
|
||||
void PPUTranslator::MFFS(ppu_opcode_t op)
|
||||
{
|
||||
CompilationError("MFFS");
|
||||
LOG_WARNING(PPU, "LLVM: [0x%08x] Warning: MFFS", m_addr + (m_reloc ? m_reloc->addr : 0));
|
||||
|
||||
Value* result = m_ir->getInt64(0);
|
||||
|
||||
|
@ -3972,7 +3972,7 @@ void PPUTranslator::MFFS(ppu_opcode_t op)
|
|||
|
||||
void PPUTranslator::MTFSF(ppu_opcode_t op)
|
||||
{
|
||||
CompilationError("MTFSF");
|
||||
LOG_WARNING(PPU, "LLVM: [0x%08x] Warning: MTFSF", m_addr + (m_reloc ? m_reloc->addr : 0));
|
||||
|
||||
const auto value = GetFpr(op.frb, 32, true);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue