diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-09 18:02:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-09 18:02:13 +0000 |
commit | 368381e9ab590369213bbad690d2ff6f21b2144f (patch) | |
tree | 3220b9e9c628fe7b78702eb0b596c8252e9e0c5f /lib/Analysis | |
parent | aca50a94b8d4863adf07eec980b83599c541ed99 (diff) |
stop using WriteTypeSymbolic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/IPA/FindUsedTypes.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Analysis/IPA/FindUsedTypes.cpp b/lib/Analysis/IPA/FindUsedTypes.cpp index dde25565ad..6535786668 100644 --- a/lib/Analysis/IPA/FindUsedTypes.cpp +++ b/lib/Analysis/IPA/FindUsedTypes.cpp @@ -96,8 +96,6 @@ void FindUsedTypes::print(raw_ostream &OS, const Module *M) const { OS << "Types in use by this module:\n"; for (SetVector<const Type *>::const_iterator I = UsedTypes.begin(), E = UsedTypes.end(); I != E; ++I) { - OS << " "; - WriteTypeSymbolic(OS, *I, M); - OS << '\n'; + OS << " " << **I << '\n'; } } |