projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc4cec9
)
eliminate use of TM.getName()
author
Chris Lattner
<sabre@nondot.org>
Sun, 3 Sep 2006 18:37:12 +0000
(18:37 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 3 Sep 2006 18:37:12 +0000
(18:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30068
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/ExecutionEngine/JIT/JIT.cpp
patch
|
blob
|
history
diff --git
a/lib/ExecutionEngine/JIT/JIT.cpp
b/lib/ExecutionEngine/JIT/JIT.cpp
index 649edbed7a4bf3607ee71471cceedcdef9db02a7..fe5309558c63d4bbc5432361fe4faba9400eee61 100644
(file)
--- a/
lib/ExecutionEngine/JIT/JIT.cpp
+++ b/
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();
}
}