Creates codeview type records for arrays and adds a simple test for one.
Details
Diff Detail
Event Timeline
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | ||
---|---|---|
785 | They don't use UInt64Quad? Surprising. |
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | ||
---|---|---|
785 | That's an excellent question. Let me check it out. |
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | ||
---|---|---|
785 | x64 MSVC 2015 Update 2 says: Index type = T_UQUAD(0023) x86 MSVC 2015 Update 2 says: Index type = T_ULONG(0022) Sounds like we should use UInt32Long and UInt64Quad. |
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | ||
---|---|---|
788 | Are you asking me to add that info or are you just commenting? |
They don't use UInt64Quad? Surprising.