forked from OSchip/llvm-project
GCInfoDeleter code cleanup after r175528
Remove GCInfoDeleter from passes and comments. llvm-svn: 176347
This commit is contained in:
parent
d0e3da1818
commit
70dd0caa46
|
@ -180,7 +180,8 @@ namespace llvm {
|
|||
GCModuleInfo();
|
||||
~GCModuleInfo();
|
||||
|
||||
/// clear - Resets the pass. The metadata deleter pass calls this.
|
||||
/// clear - Resets the pass. Any pass, which uses GCModuleInfo, should
|
||||
/// call it in doFinalization().
|
||||
///
|
||||
void clear();
|
||||
|
||||
|
|
|
@ -459,10 +459,6 @@ namespace llvm {
|
|||
/// branch folding).
|
||||
extern char &GCMachineCodeAnalysisID;
|
||||
|
||||
/// Deleter Pass - Releases GC metadata.
|
||||
///
|
||||
FunctionPass *createGCInfoDeleter();
|
||||
|
||||
/// Creates a pass to print GC metadata.
|
||||
///
|
||||
FunctionPass *createGCInfoPrinter(raw_ostream &OS);
|
||||
|
|
|
@ -124,7 +124,6 @@ void initializeEarlyCSEPass(PassRegistry&);
|
|||
void initializeExpandISelPseudosPass(PassRegistry&);
|
||||
void initializeFindUsedTypesPass(PassRegistry&);
|
||||
void initializeFunctionAttrsPass(PassRegistry&);
|
||||
void initializeGCInfoDeleterPass(PassRegistry&);
|
||||
void initializeGCMachineCodeAnalysisPass(PassRegistry&);
|
||||
void initializeGCModuleInfoPass(PassRegistry&);
|
||||
void initializeGVNPass(PassRegistry&);
|
||||
|
|
Loading…
Reference in New Issue