projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ead3b34
)
Fix a make_unique ambiguity.
author
Peter Collingbourne
<peter@pcc.me.uk>
Mon, 21 May 2018 20:56:28 +0000
(20:56 +0000)
committer
Peter Collingbourne
<peter@pcc.me.uk>
Mon, 21 May 2018 20:56:28 +0000
(20:56 +0000)
llvm-svn: 332889
llvm/lib/LTO/LTOBackend.cpp
patch
|
blob
|
history
diff --git
a/llvm/lib/LTO/LTOBackend.cpp
b/llvm/lib/LTO/LTOBackend.cpp
index d47281f4e9be454034df64fca274e6b1bf224ce2..0061bc94d2c3e161f1a53147a063d47d2b6f40a2 100644
(file)
--- a/
llvm/lib/LTO/LTOBackend.cpp
+++ b/
llvm/lib/LTO/LTOBackend.cpp
@@
-300,7
+300,7
@@
void codegen(Config &Conf, TargetMachine *TM, AddStreamFn AddStream,
SmallString<1024> DwoFile(Conf.DwoDir);
sys::path::append(DwoFile, std::to_string(Task) + ".dwo");
TM->Options.MCOptions.SplitDwarfFile = DwoFile.str().str();
- DwoOut = make_unique<ToolOutputFile>(DwoFile, EC, sys::fs::F_None);
+ DwoOut =
llvm::
make_unique<ToolOutputFile>(DwoFile, EC, sys::fs::F_None);
if (EC)
report_fatal_error("Failed to open " + DwoFile + ": " + EC.message());
}