Fixed bad return code, which would cause invalid expressions to silently fail.

llvm-svn: 192484
This commit is contained in:
Richard Mitton 2013-10-11 19:16:28 +00:00
parent 8a37f63714
commit b5637b62f2
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ IRForTarget::CreateResultVariable (llvm::Function &llvm_function)
if (log)
log->PutCString("Couldn't find result variable");
return true;
return false;
}
if (log)