Convert dump() method to call Type::dump() instead of Value::dump().
authorReid Spencer <rspencer@reidspencer.com>
Tue, 25 May 2004 08:45:42 +0000 (08:45 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 25 May 2004 08:45:42 +0000 (08:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13744 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DerivedTypes.h

index ffa9551b8da26069adeec90515f09cdfcba3cb93..58a08960279badeffee685b1be110d8874b81aee 100644 (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; }