From 3afbb1ab105f2fd0065a46265c6d9a45de5475ef Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 25 May 2004 08:45:42 +0000 Subject: [PATCH] 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 --- include/llvm/DerivedTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index ffa9551b8da..58a08960279 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -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; }