[libcxx-commits] [PATCH] D94591: [VE] Support VE in libunwind

Kazushi Marukawa via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jan 13 23:30:57 PST 2021


kaz7 added inline comments.


================
Comment at: libunwind/src/Unwind-sjlj.c:41
+  // set by calling function before registering to be the landing pad
+  uintptr_t                       resumeLocation;
+
----------------
compnerd wrote:
> If you are guaranteed to require 64-bits, I think that it would be better to use `uint64_t` rather than `uintptr_t` which is pointer-width sized.  That is subtly different, even if in practice it means that it will be 64-bit currently.  Alternatively, changing the comment is entirely reasonable to do as well.
Thank you.  I'll change it to `uint64_t`.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D94591



More information about the libcxx-commits mailing list