Integrated: 8317335: Build on windows fails after 8316645

Kim Barrett kbarrett at openjdk.org
Sun Oct 1 20:03:49 UTC 2023


On Sun, 1 Oct 2023 19:45:49 GMT, Kim Barrett <kbarrett at openjdk.org> wrote:

> Please review this trivial change that fixes a build failure with Visual
> Studio in Oracle's CI. The failure is a constant truncation warning because
> the constant initial value of a `char` member is 0xaa, which is out of range
> for a signed 8bit char. This change uses 0x7a as the initial value, which is
> in the required range.
> 
> Note that the problem code successfully builds in GitHub Actions.  I don't
> know why we're seeing this problem in Oracle's CI but not GA; perhaps a
> difference in compiler versions?
> 
> Testing:
> mach5 tier1

This pull request has now been integrated.

Changeset: 93f662f4
Author:    Kim Barrett <kbarrett at openjdk.org>
URL:       https://git.openjdk.org/jdk/commit/93f662f4fc766c09492c8d4ce7048605325d2100
Stats:     1 line in 1 file changed: 0 ins; 0 del; 1 mod

8317335: Build on windows fails after 8316645

Reviewed-by: lmesnik

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

PR: https://git.openjdk.org/jdk/pull/16000


More information about the hotspot-runtime-dev mailing list