mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Use unique_ptr to remove an explicit delete. Change return type to pass the unique_ptr to caller.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224003 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8f616165e4
commit
11043f9faf
@ -95,9 +95,9 @@ static cl::opt<bool> AsmVerbose("asm-verbose",
|
||||
|
||||
static int compileModule(char **, LLVMContext &);
|
||||
|
||||
static tool_output_file *GetOutputStream(const char *TargetName,
|
||||
Triple::OSType OS,
|
||||
const char *ProgName) {
|
||||
static std::unique_ptr<tool_output_file>
|
||||
GetOutputStream(const char *TargetName, Triple::OSType OS,
|
||||
const char *ProgName) {
|
||||
// If we don't yet have an output filename, make one.
|
||||
if (OutputFilename.empty()) {
|
||||
if (InputFilename == "-")
|
||||
@ -151,10 +151,10 @@ static tool_output_file *GetOutputStream(const char *TargetName,
|
||||
sys::fs::OpenFlags OpenFlags = sys::fs::F_None;
|
||||
if (!Binary)
|
||||
OpenFlags |= sys::fs::F_Text;
|
||||
tool_output_file *FDOut = new tool_output_file(OutputFilename, EC, OpenFlags);
|
||||
auto FDOut = llvm::make_unique<tool_output_file>(OutputFilename, EC,
|
||||
OpenFlags);
|
||||
if (EC) {
|
||||
errs() << EC.message() << '\n';
|
||||
delete FDOut;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user