projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4de4123
)
Add some dummy method impls
author
Chris Lattner
<sabre@nondot.org>
Sun, 13 Nov 2005 03:26:33 +0000
(
03:26
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 13 Nov 2005 03:26:33 +0000
(
03:26
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24345
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Type.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Type.cpp
b/lib/VMCore/Type.cpp
index 236ecfb6e109111948051199e27120223edd55d6..ba8830912cae910bdf3efbdf5bab21ba019d240d 100644
(file)
--- a/
lib/VMCore/Type.cpp
+++ b/
lib/VMCore/Type.cpp
@@
-213,6
+213,14
@@
const Type *Type::getForwardedTypeInternal() const {
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.
//