[llvm-commits] CVS: llvm/lib/VMCore/Type.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Feb 26 01:25:02 PST 2004
Changes in directory llvm/lib/VMCore:
Type.cpp updated: 1.95 -> 1.96
---
Log message:
Make sure that at least one virtual method is defined in a .cpp file to avoid
having the compiler emit RTTI and vtables to EVERY translation unit.
---
Diffs of the changes: (+1 -0)
Index: llvm/lib/VMCore/Type.cpp
diff -u llvm/lib/VMCore/Type.cpp:1.95 llvm/lib/VMCore/Type.cpp:1.96
--- llvm/lib/VMCore/Type.cpp:1.95 Mon Feb 16 21:03:47 2004
+++ llvm/lib/VMCore/Type.cpp Thu Feb 26 01:24:18 2004
@@ -26,6 +26,7 @@
//
//#define DEBUG_MERGE_TYPES 1
+AbstractTypeUser::~AbstractTypeUser() {}
//===----------------------------------------------------------------------===//
// Type Class Implementation
More information about the llvm-commits
mailing list