mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8293304: Replace some usages of INTPTR_FORMAT with PTR_FORMAT
Reviewed-by: kbarrett, coleenp
This commit is contained in:
parent
98da03af50
commit
6bd2794175
41 changed files with 137 additions and 131 deletions
|
@ -131,6 +131,11 @@ class oopDesc;
|
|||
#define SSIZE_FORMAT_W(width) "%" #width PRIdPTR
|
||||
#define SIZE_FORMAT "%" PRIuPTR
|
||||
#define SIZE_FORMAT_X "0x%" PRIxPTR
|
||||
#ifdef _LP64
|
||||
#define SIZE_FORMAT_X_0 "0x%016" PRIxPTR
|
||||
#else
|
||||
#define SIZE_FORMAT_X_0 "0x%08" PRIxPTR
|
||||
#endif
|
||||
#define SIZE_FORMAT_W(width) "%" #width PRIuPTR
|
||||
|
||||
#define INTX_FORMAT "%" PRIdPTR
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue