On Sun, 1 Feb 2026 17:12:49 GMT, Paul Sandoz <[email protected]> wrote:
>> Jatin Bhateja has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Review comments resolution
>
> src/jdk.incubator.vector/share/classes/jdk/incubator/vector/ByteVector.java
> line 580:
>
>> 578: public static ByteVector zero(VectorSpecies<Byte> species) {
>> 579: ByteSpecies vsp = (ByteSpecies) species;
>> 580: return VectorSupport.fromBitsCoerced(vsp.vectorType(),
>> vsp.laneTypeOrdinal(), species.length(),
>
> You can now use `LANE_TYPE_ORDINAL` rather than `vsp.laneTypeOrdinal()`,
> which better fits the prior pattern.
Done
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/29481#discussion_r2753281411