Make error message consistent with the rest of LLVM by saying that bytecode
is read, not parsed.

llvm-svn: 14677
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp
index 02577df..e9efd67 100644
--- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/llvm/lib/ExecutionEngine/JIT/JIT.cpp
@@ -118,10 +118,10 @@
   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();
   }