From: John Criswell Date: Thu, 18 Aug 2011 01:19:05 +0000 (+0000) Subject: Fixed compilation warning on Linux by fixing the type of a return value. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3f0e2377609e916d77e192fff2badc7f6c05be4f;p=oota-llvm.git Fixed compilation warning on Linux by fixing the type of a return value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137913 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp index 8b4b57c4458..cff6cb15a89 100644 --- a/tools/lto/LTOCodeGenerator.cpp +++ b/tools/lto/LTOCodeGenerator.cpp @@ -193,7 +193,7 @@ bool LTOCodeGenerator::compile_to_file(const char** name, std::string& errMsg) bool genResult = false; tool_output_file objFile(uniqueObjPath.c_str(), errMsg); if (!errMsg.empty()) - return NULL; + return true; genResult = this->generateObjectFile(objFile.os(), errMsg); objFile.os().close(); if (objFile.os().has_error()) {