Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Few comments below.
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | ||
---|---|---|
484 ↗ | (On Diff #59386) |
|
485 ↗ | (On Diff #59386) | I thought we wanted to have the index of FuncIdRecord, not the index of ProcedureRecord, right? |
Comment Actions
LGTM.
Only one comment (you might want to fix it in a follow up commit).
llvm/trunk/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | ||
---|---|---|
129 | Should not we return TypeIndex(0) in this case? |
Should not we return TypeIndex(0) in this case?
Or even better TypeIndex::None(), where:
static TypeIndex None() { return TypeIndex(SimpleTypeKind::None); }