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

Fangrui Song via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Aug 12 14:31:55 PDT 2022


MaskRay accepted this revision.
MaskRay added inline comments.


================
Comment at: libunwind/src/UnwindLevel1-gcc-ext.c:100
+  while (*p)
+    p++;
+  struct tbtable *TBTable = (struct tbtable *)(p + 1);
----------------
llvm style prefers pre-increment `++p` 


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