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