Fix space


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7273 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp
index ef47884..127c657 100644
--- a/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/lib/ExecutionEngine/JIT/JIT.cpp
@@ -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;
   }