diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-07 21:20:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-07 21:20:28 +0000 |
commit | f86cafdda4f5e52dcbd4e1a138895db3b4f50c4d (patch) | |
tree | 7efb9607455a8c8373ac477842ca4fd4ca0ca746 /lib/ExecutionEngine/JIT/JIT.cpp | |
parent | 23a354d1f1e3c9f7232e9b809541f4393c6eb774 (diff) |
Make error message consistent with the rest of LLVM by saying that bytecode
is read, not parsed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 02577df3c4..e9efd67f7c 100644 --- 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 parsing bytecode file: " << errmsg << "\n"; + std::cerr << "Error reading bytecode file: " << errmsg << "\n"; abort(); } catch (...) { - std::cerr << "Error parsing bytecode file!\n"; + std::cerr << "Error reading bytecode file!\n"; abort(); } |