diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-04-25 02:55:55 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-04-25 02:55:55 +0000 |
commit | a1aad3b0eda2a516f663cb5f9f8c4c9bbb6ef224 (patch) | |
tree | e2e56166bd69455b8dfdf633ed259bc488b7a3ec /lib/Target/TargetFrameInfo.cpp | |
parent | bb3d5d246b10da27858837285fba012f0c14671f (diff) |
Shut GCC 4.0 up about classes that have virtual functions but a non-virtual
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
Diffstat (limited to 'lib/Target/TargetFrameInfo.cpp')
-rw-r--r-- | lib/Target/TargetFrameInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/TargetFrameInfo.cpp b/lib/Target/TargetFrameInfo.cpp index 7255b3254f..f54e042df9 100644 --- a/lib/Target/TargetFrameInfo.cpp +++ b/lib/Target/TargetFrameInfo.cpp @@ -16,6 +16,10 @@ using namespace llvm; +TargetFrameInfo::~TargetFrameInfo() +{ +} + //===--------------------------------------------------------------------===// // These methods provide details of the stack frame used by Sparc, thus they // are Sparc specific. |