[PATCH] D26374: Add documentation for the PDB file format
Zachary Turner via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 8 08:26:04 PST 2016
zturner added inline comments.
================
Comment at: docs/PDB/MsfFile.rst:24
+ ulittle32_t Unknown;
+ ulittle32_t BlockMapAddr;
+ };
----------------
majnemer wrote:
> Looking at the microsoft-pdb sources, isn't this technically an array of addresses?
> https://github.com/Microsoft/microsoft-pdb/blob/master/PDB/msf/msf.cpp#L954
It's more like a pointer to an array. It's a single uint32 which is the index of a block, and at that block is an array.
https://reviews.llvm.org/D26374
More information about the llvm-commits
mailing list