--- /dev/null 2020-02-06 15:35:06.751096717 -0800 +++ new/test/jdk/jdk/incubator/vector/templates/Kernel-Binary-Broadcast-op.template 2020-05-28 14:31:00.452740236 -0700 @@ -0,0 +1,8 @@ + $type$[] a = fa.apply(SPECIES.length()); + $type$[] b = fb.apply(SPECIES.length()); + $type$[] r = fr.apply(SPECIES.length()); + + for (int i = 0; i < a.length; i += SPECIES.length()) { + $abstractvectortype$ av = $abstractvectortype$.fromArray(SPECIES, a, i); + av.lanewise(VectorOperators.[[TEST]], b[i]).intoArray(r, i); + }