[llvm] r302752 - Final (hopefully) fix for the build bots.

Zachary Turner via llvm-commits llvm-commits at lists.llvm.org
Wed May 10 17:22:18 PDT 2017


Author: zturner
Date: Wed May 10 19:22:18 2017
New Revision: 302752

URL: http://llvm.org/viewvc/llvm-project?rev=302752&view=rev
Log:
Final (hopefully) fix for the build bots.

This time it actually occurred to me to change the #defines
to actually test the pre-processed out codepath.  Hopefully
this time it works.

Modified:
    llvm/trunk/lib/Support/Parallel.cpp

Modified: llvm/trunk/lib/Support/Parallel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Parallel.cpp?rev=302752&r1=302751&r2=302752&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Parallel.cpp (original)
+++ llvm/trunk/lib/Support/Parallel.cpp Wed May 10 19:22:18 2017
@@ -117,7 +117,7 @@ private:
   std::stack<std::function<void()>> WorkStack;
   std::mutex Mutex;
   std::condition_variable Cond;
-  detail::Latch Done;
+  parallel::detail::Latch Done;
 };
 
 Executor *Executor::getDefaultExecutor() {




More information about the llvm-commits mailing list