Fix space
authorChris Lattner <sabre@nondot.org>
Wed, 23 Jul 2003 20:21:06 +0000 (20:21 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 23 Jul 2003 20:21:06 +0000 (20:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7273 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JIT.cpp

index ef4788499709d35fd10657a58a700096aa98d8eb..127c6579ca4ff3c1731c5d3cd2204f5a1850654c 100644 (file)
@@ -104,7 +104,7 @@ VM::VM(Module *M, TargetMachine *tm) : ExecutionEngine(M), TM(*tm) {
 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;
   }