RFR: 8361086: JVMCIGlobals::check_jvmci_flags_are_consistent has incorrect format string

Vladimir Kozlov kvn at openjdk.org
Mon Jun 30 17:23:45 UTC 2025


On Mon, 30 Jun 2025 16:14:08 GMT, Kim Barrett <kbarrett at openjdk.org> wrote:

> Please review this trivial fix of a format string. The value being printed is
> TieredStopAtLevel, which is of type intx, so "%zd" should be used instead of "%d".
> 
> Testing: mach5 tier1

Or we can cast it to (int). Or we can change flag's declaration to `int` type.

-------------

PR Review: https://git.openjdk.org/jdk/pull/26051#pullrequestreview-2972076516


More information about the hotspot-compiler-dev mailing list