Add virtual destructor.

llvm-svn: 85141
This commit is contained in:
David Goodwin 2009-10-26 19:00:47 +00:00
parent 99f11f769e
commit 6b16b5e741
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ namespace llvm {
/// anti-dependencies.
class AntiDepBreaker {
public:
virtual ~AntiDepBreaker() { };
/// Start - Initialize anti-dep breaking for a new basic block.
virtual void StartBlock(MachineBasicBlock *BB) =0;