diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-03 18:37:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-03 18:37:12 +0000 |
commit | ad36544457e1e332e36bf5df8612bc10f340dca2 (patch) | |
tree | 7d47139af2f1943941a960bdafc4f4f035b0facf /llvm/lib/ExecutionEngine/JIT/JIT.cpp | |
parent | 5328ba96e1a06ebe045999769defc89f1fc11fa1 (diff) | |
download | bcm5719-llvm-ad36544457e1e332e36bf5df8612bc10f340dca2.tar.gz bcm5719-llvm-ad36544457e1e332e36bf5df8612bc10f340dca2.zip |
eliminate use of TM.getName()
llvm-svn: 30068
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index 649edbed7a4..fe5309558c6 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JIT.cpp @@ -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(); } } |