[PATCH] D153318: [llvm] Refactor BalancedPartitioning for fixing build failure with MSVC
kamlesh kumar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 20 21:07:59 PDT 2023
kamleshbhalui updated this revision to Diff 533123.
kamleshbhalui added a comment.
clang-formatted
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153318/new/
https://reviews.llvm.org/D153318
Files:
llvm/include/llvm/Support/BalancedPartitioning.h
llvm/lib/Support/BalancedPartitioning.cpp
Index: llvm/lib/Support/BalancedPartitioning.cpp
===================================================================
--- llvm/lib/Support/BalancedPartitioning.cpp
+++ llvm/lib/Support/BalancedPartitioning.cpp
@@ -12,11 +12,11 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/BalancedPartitioning.h"
-#include "llvm/Support/ThreadPool.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/FormatVariadic.h"
+#include "llvm/Support/ThreadPool.h"
using namespace llvm;
#define DEBUG_TYPE "balanced-partitioning"
Index: llvm/include/llvm/Support/BalancedPartitioning.h
===================================================================
--- llvm/include/llvm/Support/BalancedPartitioning.h
+++ llvm/include/llvm/Support/BalancedPartitioning.h
@@ -39,12 +39,12 @@
#ifndef LLVM_SUPPORT_BALANCED_PARTITIONING_H
#define LLVM_SUPPORT_BALANCED_PARTITIONING_H
-#include "llvm/ADT/ArrayRef.h"
#include "raw_ostream.h"
+#include "llvm/ADT/ArrayRef.h"
-#include <mutex>
-#include <condition_variable>
#include <atomic>
+#include <condition_variable>
+#include <mutex>
#include <random>
#include <vector>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153318.533123.patch
Type: text/x-patch
Size: 1241 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230621/8b954d8e/attachment.bin>
More information about the llvm-commits
mailing list