Convert dump() method to call Type::dump() instead of Value::dump().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13744 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-05-25 08:45:42 +00:00
parent 03d186abe0
commit 3afbb1ab10

View File

@ -88,7 +88,7 @@ public:
///
void refineAbstractTypeTo(const Type *NewType);
void dump() const { Value::dump(); }
void dump() const { Type::dump(); }
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const DerivedType *T) { return true; }