summaryrefslogtreecommitdiff
path: root/llvm/test/DebugInfo/PDB/Inputs/every-pointer.cpp
AgeCommit message (Collapse)Author
2018-09-18[PDB] Better support for enumerating pointer types.Zachary Turner
There were several issues with the previous implementation. 1) There were no tests. 2) We didn't support creating PDBSymbolTypePointer records for builtin types since those aren't described by LF_POINTER records. 3) We didn't support a wide enough variety of builtin types even ignoring pointers. This patch fixes all of these issues. In order to add tests, it's helpful to be able to ignore the symbol index id hierarchy because it makes the golden output from the DIA version not match our output, so I've extended the dumper to disable dumping of id fields. llvm-svn: 342493