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:
23a354d
)
Make error message consistent with the rest of LLVM by saying that bytecode
author
Reid Spencer
<rspencer@reidspencer.com>
Wed, 7 Jul 2004 21:20:28 +0000
(21:20 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Wed, 7 Jul 2004 21:20:28 +0000
(21:20 +0000)
is read, not parsed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14677
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 02577df3c424e91f6554effe567eb452c304e740..e9efd67f7c9c965057195269dd221e23c710cf42 100644
(file)
--- a/
lib/ExecutionEngine/JIT/JIT.cpp
+++ b/
lib/ExecutionEngine/JIT/JIT.cpp
@@
-118,10
+118,10
@@
void *JIT::getPointerToFunction(Function *F) {
try {
MP->materializeFunction(F);
} catch ( std::string& errmsg ) {
- std::cerr << "Error
pars
ing bytecode file: " << errmsg << "\n";
+ std::cerr << "Error
read
ing bytecode file: " << errmsg << "\n";
abort();
} catch (...) {
- std::cerr << "Error
pars
ing bytecode file!\n";
+ std::cerr << "Error
read
ing bytecode file!\n";
abort();
}