[llvm] 6c1f2a3 - SpillPlacement.cpp - remove unnecessary includes. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 15 04:21:33 PDT 2020
Author: Simon Pilgrim
Date: 2020-09-15T12:18:24+01:00
New Revision: 6c1f2a34fbcaa57c3dc0de3f9e4da58da7f328b6
URL: https://github.com/llvm/llvm-project/commit/6c1f2a34fbcaa57c3dc0de3f9e4da58da7f328b6
DIFF: https://github.com/llvm/llvm-project/commit/6c1f2a34fbcaa57c3dc0de3f9e4da58da7f328b6.diff
LOG: SpillPlacement.cpp - remove unnecessary includes. NFCI.
These are all directly included in SpillPlacement.h
Added:
Modified:
llvm/lib/CodeGen/SpillPlacement.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SpillPlacement.cpp b/llvm/lib/CodeGen/SpillPlacement.cpp
index 36a0ddf67b19..4bb50a285497 100644
--- a/llvm/lib/CodeGen/SpillPlacement.cpp
+++ b/llvm/lib/CodeGen/SpillPlacement.cpp
@@ -27,10 +27,7 @@
//===----------------------------------------------------------------------===//
#include "SpillPlacement.h"
-#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/BitVector.h"
-#include "llvm/ADT/SmallVector.h"
-#include "llvm/ADT/SparseSet.h"
#include "llvm/CodeGen/EdgeBundles.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
@@ -39,7 +36,6 @@
#include "llvm/CodeGen/Passes.h"
#include "llvm/InitializePasses.h"
#include "llvm/Pass.h"
-#include "llvm/Support/BlockFrequency.h"
#include <algorithm>
#include <cassert>
#include <cstdint>
More information about the llvm-commits
mailing list