diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-05-25 08:45:42 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-05-25 08:45:42 +0000 |
commit | 303a74d2b7b32c28d1cab4a258f69c318b921260 (patch) | |
tree | 985c05a6a2135706f69a9fb1483aaec1bf8f410a /llvm | |
parent | bbea18c182d164729221e0af3542a2a12529352a (diff) | |
download | bcm5719-llvm-303a74d2b7b32c28d1cab4a258f69c318b921260.tar.gz bcm5719-llvm-303a74d2b7b32c28d1cab4a258f69c318b921260.zip |
Convert dump() method to call Type::dump() instead of Value::dump().
llvm-svn: 13744
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/DerivedTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/DerivedTypes.h b/llvm/include/llvm/DerivedTypes.h index ffa9551b8da..58a08960279 100644 --- a/llvm/include/llvm/DerivedTypes.h +++ b/llvm/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; } |