diff options
author | Zachary Turner <zturner@google.com> | 2018-11-20 00:10:27 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-11-20 00:10:27 +0000 |
commit | b35e1d7dc3ee96ed9ecf19fbc2de56b26d93a5dc (patch) | |
tree | 442ddc34b211fa889d9755ae171665b35cbf2a7a /llvm/lib/DebugInfo | |
parent | 54ebfe8aeee1b614c3d11b103abde63290e0294d (diff) | |
download | bcm5719-llvm-b35e1d7dc3ee96ed9ecf19fbc2de56b26d93a5dc.tar.gz bcm5719-llvm-b35e1d7dc3ee96ed9ecf19fbc2de56b26d93a5dc.zip |
[CodeView] Don't print PointerAttributes when dumping.
PointerAttributes is a bitwise-or of several other fields, each of
which is already printed on its own line with a better explanation.
So this doesn't really help much.
llvm-svn: 347275
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp b/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp index 7c68c9167c9..f7afc068f2c 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp @@ -361,7 +361,6 @@ Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, TypeServer2Record &TS) { Error TypeDumpVisitor::visitKnownRecord(CVType &CVR, PointerRecord &Ptr) { printTypeIndex("PointeeType", Ptr.getReferentType()); - W->printHex("PointerAttributes", uint32_t(Ptr.getOptions())); W->printEnum("PtrType", unsigned(Ptr.getPointerKind()), makeArrayRef(PtrKindNames)); W->printEnum("PtrMode", unsigned(Ptr.getMode()), makeArrayRef(PtrModeNames)); |