[llvm] 39e1958 - IVDescriptors.h - include and forward declaration cleanup. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 13 05:10:45 PDT 2020
Author: Simon Pilgrim
Date: 2020-04-13T13:09:39+01:00
New Revision: 39e19588fa203a34786692ef44ae4252da248d8a
URL: https://github.com/llvm/llvm-project/commit/39e19588fa203a34786692ef44ae4252da248d8a
DIFF: https://github.com/llvm/llvm-project/commit/39e19588fa203a34786692ef44ae4252da248d8a.diff
LOG: IVDescriptors.h - include and forward declaration cleanup. NFC.
Replace unused AliasAnalysis.h and EHPersonalities.h includes
Remove unused llvm::AliasSet/AliasSetTracker/BasicBlock/DataLayout/LoopInfo/OptimizationRemarkEmitter/PredIteratorCache/TargetLibraryInfo/TargetTransformInfo forward declarations.
Added:
Modified:
llvm/include/llvm/Analysis/IVDescriptors.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/IVDescriptors.h b/llvm/include/llvm/Analysis/IVDescriptors.h
index de51fedd8ceb..ea6723e79497 100644
--- a/llvm/include/llvm/Analysis/IVDescriptors.h
+++ b/llvm/include/llvm/Analysis/IVDescriptors.h
@@ -19,8 +19,6 @@
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
-#include "llvm/Analysis/AliasAnalysis.h"
-#include "llvm/Analysis/EHPersonalities.h"
#include "llvm/Analysis/MustExecute.h"
#include "llvm/Analysis/TargetTransformInfo.h"
#include "llvm/IR/Dominators.h"
@@ -31,20 +29,11 @@
namespace llvm {
-class AliasSet;
-class AliasSetTracker;
-class BasicBlock;
-class DataLayout;
class DemandedBits;
class Loop;
-class LoopInfo;
-class OptimizationRemarkEmitter;
class PredicatedScalarEvolution;
-class PredIteratorCache;
class ScalarEvolution;
class SCEV;
-class TargetLibraryInfo;
-class TargetTransformInfo;
/// The RecurrenceDescriptor is used to identify recurrences variables in a
/// loop. Reduction is a special case of recurrence that has uses of the
More information about the llvm-commits
mailing list