delete a bunch of duplicated type printing logic, using the type printing

stuff in AsmWriter.cpp for Type::getDescription().


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65734 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-02-28 23:01:57 +00:00
parent 8ab55b747d
commit ae3042316f
2 changed files with 18 additions and 154 deletions

View File

@@ -177,8 +177,8 @@ public:
///
inline TypeID getTypeID() const { return ID; }
/// getDescription - Return the string representation of the type...
const std::string &getDescription() const;
/// getDescription - Return the string representation of the type.
std::string getDescription() const;
/// isInteger - True if this is an instance of IntegerType.
///