mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
[PM] Sink the convenience typedefs after the class template they are
referring to and give them nice comments. Previously, these were used, but now things use the generic form of the AnalysisManager. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225833 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3b0fe4ec0a
commit
6dc4b28cd4
@ -169,11 +169,8 @@ private:
|
||||
SmallPtrSet<void *, 2> PreservedPassIDs;
|
||||
};
|
||||
|
||||
// Forward declare the analysis manager template and two typedefs used in the
|
||||
// pass managers.
|
||||
// Forward declare the analysis manager template.
|
||||
template <typename IRUnitT> class AnalysisManager;
|
||||
typedef AnalysisManager<Module> ModuleAnalysisManager;
|
||||
typedef AnalysisManager<Function> FunctionAnalysisManager;
|
||||
|
||||
/// \brief Manages a sequence of passes over units of IR.
|
||||
///
|
||||
@ -567,6 +564,12 @@ private:
|
||||
AnalysisResultMapT AnalysisResults;
|
||||
};
|
||||
|
||||
/// \brief Convenience typedef for the Module analysis manager.
|
||||
typedef AnalysisManager<Module> ModuleAnalysisManager;
|
||||
|
||||
/// \brief Convenience typedef for the Function analysis manager.
|
||||
typedef AnalysisManager<Function> FunctionAnalysisManager;
|
||||
|
||||
/// \brief A module analysis which acts as a proxy for a function analysis
|
||||
/// manager.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user