[llvm] 69682f9 - InterferenceCache.cpp - remove duplicate includes. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 16 10:33:00 PDT 2020


Author: Simon Pilgrim
Date: 2020-09-16T18:32:28+01:00
New Revision: 69682f993cc0545da30be32fab572a2a56074653

URL: https://github.com/llvm/llvm-project/commit/69682f993cc0545da30be32fab572a2a56074653
DIFF: https://github.com/llvm/llvm-project/commit/69682f993cc0545da30be32fab572a2a56074653.diff

LOG: InterferenceCache.cpp - remove duplicate includes. NFCI.

Remove headers already included in InterferenceCache.h

Added: 
    

Modified: 
    llvm/lib/CodeGen/InterferenceCache.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/InterferenceCache.cpp b/llvm/lib/CodeGen/InterferenceCache.cpp
index 7b50dac4cd1a..617db0450d02 100644
--- a/llvm/lib/CodeGen/InterferenceCache.cpp
+++ b/llvm/lib/CodeGen/InterferenceCache.cpp
@@ -12,19 +12,15 @@
 
 #include "InterferenceCache.h"
 #include "llvm/ADT/ArrayRef.h"
-#include "llvm/CodeGen/LiveInterval.h"
-#include "llvm/CodeGen/LiveIntervalUnion.h"
 #include "llvm/CodeGen/LiveIntervals.h"
 #include "llvm/CodeGen/MachineBasicBlock.h"
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineOperand.h"
-#include "llvm/CodeGen/SlotIndexes.h"
 #include "llvm/CodeGen/TargetRegisterInfo.h"
 #include "llvm/MC/MCRegisterInfo.h"
 #include "llvm/Support/ErrorHandling.h"
 #include <cassert>
 #include <cstdint>
-#include <cstdlib>
 #include <tuple>
 
 using namespace llvm;


        


More information about the llvm-commits mailing list