aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-05-25 08:45:42 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-05-25 08:45:42 +0000
commit3afbb1ab105f2fd0065a46265c6d9a45de5475ef (patch)
tree6a2d0ca1086c4dfe859319f3cf9396d94005d387
parent03d186abe08cb7080abf201c9d0547935ffadc20 (diff)
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
-rw-r--r--include/llvm/DerivedTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h
index ffa9551b8d..58a0896027 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; }