I'm going to use this class for the visitor to verify
TPI hash records.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Since a class is added, you will need to update TypeRecords.def and change this line:
CV_TYPE(LF_UDT_MOD_SRC_LINE, 0x1607)
to this:
TYPE_RECORD(LF_UDT_MOD_SRC_LINE, 0x1607, UdtModSourceLine)
Then you can add the following method to TypeDumper.cpp
void CVTypeDumper::visitUdtModSourceLine(TypeLeafKind Leaf, UdtModSourceLineRecord &SrcLine) { }
You can do this now or in a subsequent patch if you like.
Comment Actions
Ahh I see you made that change already. Does the test still pass with this? If it was previously dumping a record that had an LF_UDT_MOD_SRC_LINE, then the format will be different now.