[libcxx-commits] [PATCH] D141515: [libunwind] Fixed an upcoming clang -Wsign-conversion warning

Fangrui Song via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jan 11 13:25:29 PST 2023


MaskRay added inline comments.


================
Comment at: libunwind/src/AddressSpace.hpp:263
   addr = (pint_t) p;
-  return result;
+  return (uint64_t) result;
 }
----------------
housel wrote:
> 
`return (int64_t)result;` (delete space)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D141515



More information about the libcxx-commits mailing list