Details
Details
- Reviewers
saugustine jgorbe mstorsjo compnerd - Group Reviewers
Restricted Project - Commits
- rG3071d5ffba23: [libunwind] Factor out getInfoFromFdeCie. NFCI.
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| libunwind/src/UnwindCursor.hpp | ||
|---|---|---|
| 1496 | Can you fix this please? The comment shouldn't be columnized. | |
| 1502 | Since you are moving things anyways, please convert these to C++ style casts. | |
| 1967–1968 | Would you mind splitting this into two conditions? if ((fdInfo.pcStart <= pc) && (pc < fdeInfo.pcEnd))
if (getInfoFromFdeCie(fdeInfo, cieInfo, pc, 0, false))
return; | |
Comment Actions
Stylistic changes. Also, only a single caller to getInfoFromFdeCie adds the result to the DwarfFDECache, so leave the cache addition code in getInfoFromDwarfSection.
Can you fix this please? The comment shouldn't be columnized.