1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix space

llvm-svn: 7273
This commit is contained in:
Chris Lattner 2003-07-23 20:21:06 +00:00
parent f453a39185
commit fc4a57d904

View 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;
}