[llvm-commits] CVS: llvm/lib/VMCore/Type.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Nov 12 19:26:44 PST 2005
Changes in directory llvm/lib/VMCore:
Type.cpp updated: 1.135 -> 1.136
---
Log message:
Add some dummy method impls
---
Diffs of the changes: (+8 -0)
Type.cpp | 8 ++++++++
1 files changed, 8 insertions(+)
Index: llvm/lib/VMCore/Type.cpp
diff -u llvm/lib/VMCore/Type.cpp:1.135 llvm/lib/VMCore/Type.cpp:1.136
--- llvm/lib/VMCore/Type.cpp:1.135 Sat Nov 12 21:14:09 2005
+++ llvm/lib/VMCore/Type.cpp Sat Nov 12 21:26:33 2005
@@ -213,6 +213,14 @@
return ForwardType;
}
+void Type::refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
+ abort();
+}
+void Type::typeBecameConcrete(const DerivedType *AbsTy) {
+ abort();
+}
+
+
// getTypeDescription - This is a recursive function that walks a type hierarchy
// calculating the description for a type.
//
More information about the llvm-commits
mailing list