hg: valhalla/valhalla: 8222525: [lworld] Runtime support for LW2 Arrays
David Simms
david.simms at oracle.com
Fri Apr 26 12:19:18 UTC 2019
Follow up bug filed: https://bugs.openjdk.java.net/browse/JDK-8223017
(sorry I just adjusted the missing label on the bug)
We were looking to sync up in the repo with C2 code first, which also
needs widening conversion code.
On 26/04/19 2:15 PM, Srikanth wrote:
> The following program triggers a CCE:
>
> public inline class X {
> int x = 42;
> public static void main(String [] args) {
> X[] xqa = new X[10];
> X?[] xla;
> Object [] oa;
> Object o;
> o = oa = xla = xqa;
> xqa = (X[]) (xla = (X?[])(oa = (Object []) o));
> }
> }
>
> on tip. Is that expected ???
>
> Srikanth
>
More information about the valhalla-dev
mailing list