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:
06782f8
)
Fix space
author
Chris Lattner
<sabre@nondot.org>
Wed, 23 Jul 2003 20:21:06 +0000
(20:21 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 23 Jul 2003 20:21:06 +0000
(20:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7273
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 ef4788499709d35fd10657a58a700096aa98d8eb..127c6579ca4ff3c1731c5d3cd2204f5a1850654c 100644
(file)
--- a/
lib/ExecutionEngine/JIT/JIT.cpp
+++ b/
lib/ExecutionEngine/JIT/JIT.cpp
@@
-104,7
+104,7
@@
VM::VM(Module *M, TargetMachine *tm) : ExecutionEngine(M), TM(*tm) {
int VM::run(const std::string &FnName, const std::vector<std::string> &Args) {
Function *F = getModule().getNamedFunction(FnName);
if (F == 0) {
- std::cerr << "Could not find function '" << FnName <<"' in module!\n";
+ std::cerr << "Could not find function '" << FnName <<
"' in module!\n";
return 1;
}