1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

eliminate use of TM.getName()

llvm-svn: 30068
This commit is contained in:
Chris Lattner 2006-09-03 18:37:12 +00:00
parent 65007fc49c
commit e501184a05

View File

@ -67,8 +67,7 @@ JIT::JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji)
// Turn the machine code intermediate representation into bytes in memory that
// may be executed.
if (TM.addPassesToEmitMachineCode(PM, *MCE)) {
std::cerr << "Target '" << TM.getName()
<< "' doesn't support machine code emission!\n";
std::cerr << "Target does not support machine code emission!\n";
abort();
}
}