[libcxx-commits] [PATCH] D131709: [libunwind][AIX] Implement _Unwind_FindEnclosingFunction() using traceback table on AIX

Xing Xue via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Aug 12 15:13:52 PDT 2022


xingxue added inline comments.


================
Comment at: libunwind/src/UnwindLevel1-gcc-ext.c:100
+  while (*p)
+    p++;
+  struct tbtable *TBTable = (struct tbtable *)(p + 1);
----------------
MaskRay wrote:
> llvm style prefers pre-increment `++p` 
Sorry, changed both instances as suggested, thanks!


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D131709/new/

https://reviews.llvm.org/D131709



More information about the libcxx-commits mailing list