[Lldb-commits] [PATCH] D71498: Fix ARM32 inferior calls

Jan Kratochvil via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 16 11:40:07 PST 2019


jankratochvil added a comment.

In D71498#1786319 <https://reviews.llvm.org/D71498#1786319>, @clayborg wrote:

> For the printf style statement, we can't use just one cast to "uintptr_t" because on 32 bit systems it won't be converted to 64 bit.


That pointer-to-`uint64_t` is now used for `printf` with `PRIx64` so if we use pointer-to-`uintptr_t` we could use `PRIxPTR`.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D71498





More information about the lldb-commits mailing list