Skip to content

Commit 2068441

Browse files
committed
iter
1 parent d277fa4 commit 2068441

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lucene/core/src/java24/org/apache/lucene/internal/vectorization/PanamaBitSetUtil.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import jdk.incubator.vector.IntVector;
2121
import jdk.incubator.vector.VectorOperators;
2222
import jdk.incubator.vector.VectorSpecies;
23+
import org.apache.lucene.util.SuppressForbidden;
2324

2425
public class PanamaBitSetUtil extends BitSetUtil {
2526

@@ -39,6 +40,7 @@ int word2Array(long word, int base, int[] docs, int offset) {
3940
return intWord2Array((int) (word >>> 32), docs, offset, base + 32);
4041
}
4142

43+
@SuppressForbidden(reason = "Uses compress only where fast and carefully contained")
4244
private static int intWord2Array(int word, int[] resultArray, int offset, int base) {
4345
IntVector bitMask = IntVector.fromArray(INT_SPECIES, IDENTITY_MASK, 0);
4446

0 commit comments

Comments
 (0)