[llvm-commits] CVS: llvm/lib/VMCore/Pass.cpp

Misha Brukman brukman at cs.uiuc.edu
Wed Jul 7 16:23:01 PDT 2004


Changes in directory llvm/lib/VMCore:

Pass.cpp updated: 1.59 -> 1.60

---
Log message:

There is no error message to print out, end sentence with `!'


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

Index: llvm/lib/VMCore/Pass.cpp
diff -u llvm/lib/VMCore/Pass.cpp:1.59 llvm/lib/VMCore/Pass.cpp:1.60
--- llvm/lib/VMCore/Pass.cpp:1.59	Wed Jul  7 16:01:38 2004
+++ llvm/lib/VMCore/Pass.cpp	Wed Jul  7 16:22:05 2004
@@ -98,7 +98,7 @@
     std::cerr << "Error reading bytecode file: " << errstr << "\n";
     abort();
   } catch (...) {
-    std::cerr << "Error reading bytecode file:\n";
+    std::cerr << "Error reading bytecode file!\n";
     abort();
   }
   return PM->run(F); 





More information about the llvm-commits mailing list