Add a Force option to raw_fd_ostream to specify whether opening

an existing file is considered an error. Convert several tools
to use raw_fd_ostream instead of std::ostream, and to use this
new option instead of doing a manual check.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75801 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2009-07-15 17:29:42 +00:00
parent 2286f8dc4c
commit a1bdcedc38
12 changed files with 116 additions and 146 deletions

View File

@ -186,7 +186,8 @@ const void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg)
bool genResult = false;
{
raw_fd_ostream asmFD(raw_fd_ostream(uniqueAsmPath.c_str(),
false, errMsg));
/*Binary=*/false, /*Force=*/true,
errMsg));
formatted_raw_ostream asmFile(asmFD);
if (!errMsg.empty())
return NULL;