On Tue, 3 Mar 2026 21:48:52 GMT, Matias Saavedra Silva <[email protected]> 
wrote:

> This patch forwards JDK-8366743 to mainline which implements the spec changes 
> to acmp ifnull and uninitializedThis. Verified with tier 1-5 tests.

test/hotspot/jtreg/runtime/verifier/UninitThisAcmpOld.jasm line 37:

> 35:          if_acmpne         L14;
> 36:          nop;
> 37:   L14:   invokespecial     Method java/lang/Object."<init>":"()V";

Missing an `aload_0` here:
Suggestion:

  L14:   aload_0;
         invokespecial     Method java/lang/Object."<init>":"()V";

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

PR Review Comment: https://git.openjdk.org/jdk/pull/30036#discussion_r2886063505

Reply via email to