forked from OSchip/llvm-project
Fixed compilation warning on Linux by fixing the type of a return value.
llvm-svn: 137913
This commit is contained in:
parent
3045386527
commit
bae1c0b23b
|
@ -193,7 +193,7 @@ bool LTOCodeGenerator::compile_to_file(const char** name, std::string& errMsg)
|
||||||
bool genResult = false;
|
bool genResult = false;
|
||||||
tool_output_file objFile(uniqueObjPath.c_str(), errMsg);
|
tool_output_file objFile(uniqueObjPath.c_str(), errMsg);
|
||||||
if (!errMsg.empty())
|
if (!errMsg.empty())
|
||||||
return NULL;
|
return true;
|
||||||
genResult = this->generateObjectFile(objFile.os(), errMsg);
|
genResult = this->generateObjectFile(objFile.os(), errMsg);
|
||||||
objFile.os().close();
|
objFile.os().close();
|
||||||
if (objFile.os().has_error()) {
|
if (objFile.os().has_error()) {
|
||||||
|
|
Loading…
Reference in New Issue