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 | 1a4152fa2c96ee5f728c68cc6179599870bffd50 (patch) | |
| tree | 9a1c63cecced3397502ec3d964872d72da47f79a /llvm/lib/ExecutionEngine/JIT/JIT.cpp | |
| parent | 37e0ba969aa24355d1baa26da7a574c5d00390e3 (diff) | |
| download | bcm5719-llvm-1a4152fa2c96ee5f728c68cc6179599870bffd50.tar.gz bcm5719-llvm-1a4152fa2c96ee5f728c68cc6179599870bffd50.zip | |
Make error message consistent with the rest of LLVM by saying that bytecode
is read, not parsed.
llvm-svn: 14677
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.cpp')
| -rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index 02577df3c42..e9efd67f7c9 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/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(); } |

