[llvm-commits] CVS: llvm/lib/VMCore/InlineAsm.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Jun 7 15:47:56 PDT 2006
Changes in directory llvm/lib/VMCore:
InlineAsm.cpp updated: 1.9 -> 1.10
---
Log message:
Add a virtual dtor to the InlineAsm class so that the principle method of
the class can be defined in InlineAsm.cpp
---
Diffs of the changes: (+6 -0)
InlineAsm.cpp | 6 ++++++
1 files changed, 6 insertions(+)
Index: llvm/lib/VMCore/InlineAsm.cpp
diff -u llvm/lib/VMCore/InlineAsm.cpp:1.9 llvm/lib/VMCore/InlineAsm.cpp:1.10
--- llvm/lib/VMCore/InlineAsm.cpp:1.9 Thu Feb 23 17:36:53 2006
+++ llvm/lib/VMCore/InlineAsm.cpp Wed Jun 7 17:47:44 2006
@@ -17,6 +17,12 @@
#include <cctype>
using namespace llvm;
+// Implement the first virtual method in this class in this file so the
+// InlineAsm vtable is emitted here.
+InlineAsm::~InlineAsm() {
+}
+
+
// NOTE: when memoizing the function type, we have to be careful to handle the
// case when the type gets refined.
More information about the llvm-commits
mailing list