projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aca50a9
)
stop using WriteTypeSymbolic.
author
Chris Lattner
<sabre@nondot.org>
Sat, 9 Jul 2011 18:02:13 +0000
(18:02 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sat, 9 Jul 2011 18:02:13 +0000
(18:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134833
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Analysis/IPA/FindUsedTypes.cpp
patch
|
blob
|
history
diff --git
a/lib/Analysis/IPA/FindUsedTypes.cpp
b/lib/Analysis/IPA/FindUsedTypes.cpp
index dde25565ad81db499cd0e6a9a10e6a5192d205bc..6535786668bc1f3863cebc7ee542a56958f5a978 100644
(file)
--- 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';
}
}