[lld] r275695 - Attempt to unbreak Windows bot.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Sat Jul 16 12:16:15 PDT 2016


Author: ruiu
Date: Sat Jul 16 14:16:15 2016
New Revision: 275695

URL: http://llvm.org/viewvc/llvm-project?rev=275695&view=rev
Log:
Attempt to unbreak Windows bot.

Modified:
    lld/trunk/ELF/DriverUtils.cpp

Modified: lld/trunk/ELF/DriverUtils.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/DriverUtils.cpp?rev=275695&r1=275694&r2=275695&view=diff
==============================================================================
--- lld/trunk/ELF/DriverUtils.cpp (original)
+++ lld/trunk/ELF/DriverUtils.cpp Sat Jul 16 14:16:15 2016
@@ -134,7 +134,7 @@ CpioFile::CpioFile(std::unique_ptr<raw_f
 CpioFile *CpioFile::create(StringRef OutputPath) {
   std::string Path = (OutputPath + ".cpio").str();
   std::error_code EC;
-  auto OS = make_unique<raw_fd_ostream>(Path, EC, fs::F_None);
+  auto OS = llvm::make_unique<raw_fd_ostream>(Path, EC, fs::F_None);
   if (EC) {
     error(EC, "--reproduce: failed to open " + Path);
     return nullptr;




More information about the llvm-commits mailing list