mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
PPU/LLVM: Properly print verification string
This commit is contained in:
parent
eb90e509f9
commit
241dedef4e
@ -236,7 +236,7 @@ std::pair<Executable, llvm::ExecutionEngine *> Compiler::Compile(const std::stri
|
||||
std::string verify;
|
||||
raw_string_ostream verify_ostream(verify);
|
||||
if (verifyFunction(*m_state.function, &verify_ostream)) {
|
||||
m_recompilation_engine.Log() << "Verification failed: " << verify << "\n";
|
||||
m_recompilation_engine.Log() << "Verification failed: " << verify_ostream.str() << "\n";
|
||||
}
|
||||
|
||||
auto ir_build_end = std::chrono::high_resolution_clock::now();
|
||||
|
Loading…
Reference in New Issue
Block a user