aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2020-08-13 12:14:18 +0100
committerSimon Pilgrim <llvm-dev@redking.me.uk>2020-08-13 12:14:31 +0100
commit8a41a1f5673eacecba62e7a61a263dcf8d4b39be (patch)
treee016b476c4474b66f10cf908eb4efaf6ecbebaaa /llvm/lib
parent3b0878a370055f2a8a6f3c0f05f00d33589c20cf (diff)
downloadllvm-8a41a1f5673eacecba62e7a61a263dcf8d4b39be.zip
llvm-8a41a1f5673eacecba62e7a61a263dcf8d4b39be.tar.gz
llvm-8a41a1f5673eacecba62e7a61a263dcf8d4b39be.tar.bz2
BranchFolding.cpp - removes includes already included by BranchFolding.h. NFC.
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/BranchFolding.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp
index c6d5aa3..10acc16 100644
--- a/llvm/lib/CodeGen/BranchFolding.cpp
+++ b/llvm/lib/CodeGen/BranchFolding.cpp
@@ -18,16 +18,12 @@
#include "BranchFolding.h"
#include "llvm/ADT/BitVector.h"
-#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/STLExtras.h"
-#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Analysis/ProfileSummaryInfo.h"
#include "llvm/CodeGen/Analysis.h"
-#include "llvm/CodeGen/LivePhysRegs.h"
-#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
@@ -64,7 +60,6 @@
#include <cstddef>
#include <iterator>
#include <numeric>
-#include <vector>
using namespace llvm;