forked from OSchip/llvm-project
A virtual destructor for the class with virtual methods!
llvm-svn: 137400
This commit is contained in:
parent
121302772d
commit
0847b3a6d3
|
@ -44,7 +44,7 @@ typedef std::pair<const MachineInstr *, const MachineInstr *> InsnRange;
|
||||||
class LexicalScopes {
|
class LexicalScopes {
|
||||||
public:
|
public:
|
||||||
LexicalScopes() : MF(NULL), CurrentFnLexicalScope(NULL) { }
|
LexicalScopes() : MF(NULL), CurrentFnLexicalScope(NULL) { }
|
||||||
~LexicalScopes();
|
virtual ~LexicalScopes();
|
||||||
|
|
||||||
/// initialize - Scan machine function and constuct lexical scope nest.
|
/// initialize - Scan machine function and constuct lexical scope nest.
|
||||||
virtual void initialize(const MachineFunction &);
|
virtual void initialize(const MachineFunction &);
|
||||||
|
|
Loading…
Reference in New Issue