[PATCH] D155066: [libunwind] Unwind through aarch64/FreeBSD sigreturn frame
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 12 18:11:51 PDT 2023
MaskRay added inline comments.
================
Comment at: libunwind/src/UnwindCursor.hpp:2919
+ if (sysctl (mib, 4, &kst, &len, NULL, 0) == 0) {
+ _isSigTrampDetermined = true;
+ _sigTrampStart = reinterpret_cast<pint_t>(kst.ksigtramp_start);
----------------
Not indented or are you using tabs? We don't use tabs.
Use `clang/tools/clang-format/clang-format-diff.py` to format modified lines.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D155066/new/
https://reviews.llvm.org/D155066
More information about the llvm-commits
mailing list