Skip to content

Commit

Permalink
[Backport] 8267357: build breaks with -Werror option on micro benchma…
Browse files Browse the repository at this point in the history
…rk added for JDK-8256973

Summary: [Backport] 8267357: build breaks with -Werror option on micro benchmark added for JDK-8256973

Test Plan: ci jtreg

Reviewed-by: JoshuaZhuwj

Issue: #590
  • Loading branch information
JinZhonghui authored and JoshuaZhuwj committed Nov 13, 2023
1 parent fa069dc commit 2d038b6
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,15 @@ public class MaskQueryOperationsBenchmark {
@Param({"1","2","3"})
int inputs;

VectorSpecies bspecies;
VectorSpecies sspecies;
VectorSpecies ispecies;
VectorSpecies lspecies;
VectorMask bmask;
VectorMask smask;
VectorMask imask;
VectorMask lmask;
boolean [] mask_arr;

VectorSpecies<Byte> bspecies;
VectorSpecies<Short> sspecies;
VectorSpecies<Integer> ispecies;
VectorSpecies<Long> lspecies;
VectorMask<Byte> bmask;
VectorMask<Short> smask;
VectorMask<Integer> imask;
VectorMask<Long> lmask;
boolean [] mask_arr;

static final boolean [] mask_avg_case = {
false, false, false, true, false, false, false, false,
Expand Down

0 comments on commit 2d038b6

Please sign in to comment.