With uses of SIZE_FORMAT, SIZE_FORMAT_W and SIZE_FORMAT_X removed, we can remove these macro definitions.
SIZE_FORMAT_X_0 depends on 32/64 bits so we should keep that one and the few uses in the source code. Moved to be near the other platform dependent macros.
#ifdef _LP64
#define SIZE_FORMAT_X_0 "0x%016" PRIxPTR
#else
#define SIZE_FORMAT_X_0 "0x%08" PRIxPTR
#endif
SIZE_FORMAT_X_0 depends on 32/64 bits so we should keep that one and the few uses in the source code. Moved to be near the other platform dependent macros.
#ifdef _LP64
#define SIZE_FORMAT_X_0 "0x%016" PRIxPTR
#else
#define SIZE_FORMAT_X_0 "0x%08" PRIxPTR
#endif
- links to
-
Commit(master) openjdk/jdk/4a9fba61
-
Review(master) openjdk/jdk/23180