destructor. Just add the do-nothing virtual destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21524
91177308-0d34-0410-b5e6-
96231b3b80d8
TargetFrameInfo(StackDirection D, unsigned StackAl, int LAO)
: StackDir(D), StackAlignment(StackAl), LocalAreaOffset(LAO) {}
+ virtual ~TargetFrameInfo();
+
// These methods return information that describes the abstract stack layout
// of the target machine.
using namespace llvm;
+TargetFrameInfo::~TargetFrameInfo()
+{
+}
+
//===--------------------------------------------------------------------===//
// These methods provide details of the stack frame used by Sparc, thus they
// are Sparc specific.