[llvm] 8a41a1f - BranchFolding.cpp - removes includes already included by BranchFolding.h. NFC.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 13 04:14:46 PDT 2020


Author: Simon Pilgrim
Date: 2020-08-13T12:14:31+01:00
New Revision: 8a41a1f5673eacecba62e7a61a263dcf8d4b39be

URL: https://github.com/llvm/llvm-project/commit/8a41a1f5673eacecba62e7a61a263dcf8d4b39be
DIFF: https://github.com/llvm/llvm-project/commit/8a41a1f5673eacecba62e7a61a263dcf8d4b39be.diff

LOG: BranchFolding.cpp - removes includes already included by BranchFolding.h. NFC.

Added: 
    

Modified: 
    llvm/lib/CodeGen/BranchFolding.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp
index c6d5aa37834f..10acc163111a 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;
 


        


More information about the llvm-commits mailing list