mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-21 03:32:21 +00:00
silence some warnings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25066 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6605b5d54d
commit
361dfa62be
@ -652,6 +652,8 @@ public:
|
||||
// PMType - The type of the passmanager that subclasses this class
|
||||
typedef PassManagerT<BasicBlock> PMType;
|
||||
|
||||
virtual ~BasicBlockPassManager() {}
|
||||
|
||||
// getPMName() - Return the name of the unit the PassManager operates on for
|
||||
// debugging.
|
||||
virtual const char *getPMName() const { return "BasicBlock"; }
|
||||
@ -719,6 +721,8 @@ public:
|
||||
// PMType - The type of the passmanager that subclasses this class
|
||||
typedef PassManagerT<Function> PMType;
|
||||
|
||||
virtual ~FunctionPassManagerT() {}
|
||||
|
||||
// getPMName() - Return the name of the unit the PassManager operates on for
|
||||
// debugging.
|
||||
virtual const char *getPMName() const { return "Function"; }
|
||||
@ -778,6 +782,8 @@ public:
|
||||
// ParentClass - The type of the parent PassManager...
|
||||
typedef AnalysisResolver ParentClass;
|
||||
|
||||
virtual ~ModulePassManager() {}
|
||||
|
||||
// getPMName() - Return the name of the unit the PassManager operates on for
|
||||
// debugging.
|
||||
virtual const char *getPassName() const { return "Module Pass Manager"; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user