Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8267357: build breaks with -Werror option on micro benchmark added fo…
…r JDK-8256973

Reviewed-by: jiefu, neliasso, thartmann
  • Loading branch information
Jatin Bhateja committed May 19, 2021
1 parent 6ef46ce commit 88b1142
Showing 1 changed file with 9 additions and 10 deletions.
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

1 comment on commit 88b1142

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.