[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JIT.cpp

LLVM llvm at cs.uiuc.edu
Wed Jul 7 16:21:01 PDT 2004


Changes in directory llvm/lib/ExecutionEngine/JIT:

JIT.cpp updated: 1.35 -> 1.36

---
Log message:

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


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/ExecutionEngine/JIT/JIT.cpp
diff -u llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.35 llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.36
--- llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.35	Wed Jul  7 16:01:38 2004
+++ llvm/lib/ExecutionEngine/JIT/JIT.cpp	Wed Jul  7 16:20:28 2004
@@ -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();
   }
 





More information about the llvm-commits mailing list