Give Type its own dump() method in preparation for Type != Value.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13746 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-05-25 08:46:04 +00:00
parent bdfb668fee
commit ec55b08fd0

View File

@ -128,6 +128,9 @@ protected:
public:
virtual void print(std::ostream &O) const;
/// @brief Debugging support: print to stderr
virtual void dump() const;
//===--------------------------------------------------------------------===//
// Property accessors for dealing with types... Some of these virtual methods
// are defined in private classes defined in Type.cpp for primitive types.