[lld] r295793 - Attempt to fix buildbot.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 21 16:06:18 PST 2017


Author: ruiu
Date: Tue Feb 21 18:06:18 2017
New Revision: 295793

URL: http://llvm.org/viewvc/llvm-project?rev=295793&view=rev
Log:
Attempt to fix buildbot.

I added this log message to test the /msvclto option, but
this output might confuse FileCheck. This patch attempts to fix
it by removing it.

Modified:
    lld/trunk/COFF/DriverUtils.cpp

Modified: lld/trunk/COFF/DriverUtils.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/COFF/DriverUtils.cpp?rev=295793&r1=295792&r2=295793&view=diff
==============================================================================
--- lld/trunk/COFF/DriverUtils.cpp (original)
+++ lld/trunk/COFF/DriverUtils.cpp Tue Feb 21 18:06:18 2017
@@ -50,8 +50,6 @@ public:
   void add(const char *S) { Args.push_back(Saver.save(S)); }
 
   void run() {
-    log(Prog + " " + llvm::join(Args.begin(), Args.end(), " "));
-
     ErrorOr<std::string> ExeOrErr = sys::findProgramByName(Prog);
     if (auto EC = ExeOrErr.getError())
       fatal(EC, "unable to find " + Prog + " in PATH: ");




More information about the llvm-commits mailing list