[llvm-commits] CVS: llvm/tools/lli/JIT/JIT.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Jul 23 15:22:11 PDT 2003


Changes in directory llvm/tools/lli/JIT:

JIT.cpp updated: 1.11 -> 1.12

---
Log message:

Fix space


---
Diffs of the changes:

Index: llvm/tools/lli/JIT/JIT.cpp
diff -u llvm/tools/lli/JIT/JIT.cpp:1.11 llvm/tools/lli/JIT/JIT.cpp:1.12
--- llvm/tools/lli/JIT/JIT.cpp:1.11	Wed Jul  2 12:53:19 2003
+++ llvm/tools/lli/JIT/JIT.cpp	Wed Jul 23 15:21:06 2003
@@ -104,7 +104,7 @@
 int VM::run(const std::string &FnName, const std::vector<std::string> &Args) {
   Function *F = getModule().getNamedFunction(FnName);
   if (F == 0) {
-    std::cerr << "Could not find function '" << FnName <<"' in module!\n";
+    std::cerr << "Could not find function '" << FnName << "' in module!\n";
     return 1;
   }
 





More information about the llvm-commits mailing list