@@ -452,23 +452,23 @@ static boolean opKind(Operator op, int bit) {
452
452
public static final Unary ABS = unary ("ABS" , "abs" , VectorSupport .VECTOR_OP_ABS , VO_ALL );
453
453
/** Produce {@code -a}. */
454
454
public static final Unary NEG = unary ("NEG" , "-a" , VectorSupport .VECTOR_OP_NEG , VO_ALL |VO_SPECIAL );
455
- /** Produce {@code bitCount(a)}
455
+ /** Produce {@code bitCount(a)}. Integral only.
456
456
* @since 19
457
457
*/
458
458
public static final Unary BIT_COUNT = unary ("BIT_COUNT" , "bitCount" , VectorSupport .VECTOR_OP_BIT_COUNT , VO_NOFP );
459
- /** Produce {@code numberOfTrailingZeros(a)}
459
+ /** Produce {@code numberOfTrailingZeros(a)}. Integral only.
460
460
* @since 19
461
461
*/
462
462
public static final Unary TRAILING_ZEROS_COUNT = unary ("TRAILING_ZEROS_COUNT" , "numberOfTrailingZeros" , VectorSupport .VECTOR_OP_TZ_COUNT , VO_NOFP );
463
- /** Produce {@code numberOfLeadingZeros(a)}
463
+ /** Produce {@code numberOfLeadingZeros(a)}. Integral only.
464
464
* @since 19
465
465
*/
466
466
public static final Unary LEADING_ZEROS_COUNT = unary ("LEADING_ZEROS_COUNT" , "numberOfLeadingZeros" , VectorSupport .VECTOR_OP_LZ_COUNT , VO_NOFP );
467
- /** Produce {@code reverse(a)}
467
+ /** Produce {@code reverse(a)}. Integral only.
468
468
* @since 19
469
469
*/
470
470
public static final Unary REVERSE = unary ("REVERSE" , "reverse" , VectorSupport .VECTOR_OP_REVERSE , VO_NOFP );
471
- /** Produce {@code reverseBytes(a)}
471
+ /** Produce {@code reverseBytes(a)}. Integral only.
472
472
* @since 19
473
473
*/
474
474
public static final Unary REVERSE_BYTES = unary ("REVERSE_BYTES" , "reverseBytes" , VectorSupport .VECTOR_OP_REVERSE_BYTES , VO_NOFP );
0 commit comments