At first I was surprised to see this in one of Sandra's patches, then I realized it already was there before
commit 35e0f112a487b38d4d3e8eec101a9e0b33a1016b Author: Sandra Loosemore <[email protected]> Date: Wed Mar 26 04:16:24 2025 +0000 Doc: Break up and rearrange the "other builtins" section [PR42270] Pushed. Gerald gcc: * doc/extend.texi (Vector Extensions): Improve markup for list of operators. --- gcc/doc/extend.texi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 38229583403..17e6311813e 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -16523,8 +16523,9 @@ invoke undefined behavior at run time. Warnings for out of bound accesses for vector subscription can be enabled with @option{-Warray-bounds}. -Vector comparison is supported with standard comparison -operators: @code{==, !=, <, <=, >, >=}. Comparison operands can be +Vector comparison is supported with standard comparison operators: +@code{==}, @code{!=}, @code{<}, @code{<=}, @code{>}, and +@code{>=}. Comparison operands can be vector expressions of integer-type or real-type. Comparison between integer-type vectors and real-type vectors are not supported. The result of the comparison is a vector of the same width and number of -- 2.50.1
