The method is called from only one place and the call is already guarded by a condition which checks that IsDWO is false.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp | ||
---|---|---|
966 | Perhaps it's worth asserting that IsDWO is false? |
Comment Actions
- Added assert(!IsDWO) to determineStringOffsetsTableContribution().
- Added another assert(IsDWO) to determineStringOffsetsTableContributionDWO() for the completeness.
Perhaps it's worth asserting that IsDWO is false?