[lld] r277059 - [ELF] - Attempt to fix BB after 277042.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 28 15:10:50 PDT 2016


Author: grimar
Date: Thu Jul 28 17:10:50 2016
New Revision: 277059

URL: http://llvm.org/viewvc/llvm-project?rev=277059&view=rev
Log:
[ELF] - Attempt to fix BB after 277042.
http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/17294
Change:
std::make_unique -> llvm::make_unique

Modified:
    lld/trunk/ELF/LinkerScript.cpp

Modified: lld/trunk/ELF/LinkerScript.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LinkerScript.cpp?rev=277059&r1=277058&r2=277059&view=diff
==============================================================================
--- lld/trunk/ELF/LinkerScript.cpp (original)
+++ lld/trunk/ELF/LinkerScript.cpp Thu Jul 28 17:10:50 2016
@@ -698,7 +698,7 @@ void ScriptParser::readInputSectionRules
 
 std::unique_ptr<InputSectionDescription>
 ScriptParser::readInputSectionDescription() {
-  auto InCmd = std::make_unique<InputSectionDescription>();
+  auto InCmd = llvm::make_unique<InputSectionDescription>();
 
   // Input section wildcard can be surrounded by KEEP.
   // https://sourceware.org/binutils/docs/ld/Input-Section-Keep.html#Input-Section-Keep




More information about the llvm-commits mailing list