[llvm] [LLD] Avoid non-deterministic relocations processing. (PR #107186)

Andrew Ng via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 5 06:40:55 PDT 2024


================
@@ -96,9 +96,8 @@ class TaskGroup {
 
   // Spawn a task, but does not wait for it to finish.
   // Tasks marked with \p Sequential will be executed
-  // exactly in the order which they were spawned.
-  // Note: Sequential tasks may be executed on different
-  // threads, but strictly in sequential order.
+  // exactly in the order which they were spawned and
+  // on the thread with index 0.
----------------
nga888 wrote:

I remember this behaviour being slightly concerning when this functionality was added and now I know why...

https://github.com/llvm/llvm-project/pull/107186


More information about the llvm-commits mailing list