https://gcc.gnu.org/g:f23af8c6915856ad36e9aaf20745f592b755a55c
commit r14-12208-gf23af8c6915856ad36e9aaf20745f592b755a55c Author: Yury Khrustalev <[email protected]> Date: Thu Oct 16 15:54:37 2025 +0100 Fix comment for VECTOR_BOOL_MODE gcc/ * machmode.def (VECTOR_BOOL_MODE): Fix comment. (cherry picked from commit 4740853c9f18f815024f7a1fd41dda0750f258e3) Diff: --- gcc/machmode.def | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gcc/machmode.def b/gcc/machmode.def index 1c319db4b795..8859779043b7 100644 --- a/gcc/machmode.def +++ b/gcc/machmode.def @@ -148,12 +148,12 @@ along with GCC; see the file COPYING3. If not see mode, with smaller numbers indicating a higher priority. VECTOR_BOOL_MODE (NAME, COUNT, COMPONENT, BYTESIZE) - Create a vector mode called NAME that contains COUNT boolean - elements and occupies BYTESIZE bytes in total. Each boolean - element is of COMPONENT type and occupies (COUNT * BITS_PER_UNIT) / - BYTESIZE bits, with the element at index 0 occupying the lsb of the - first byte in memory. Only the lowest bit of each element is - significant. + Create a vector mode called NAME that contains COUNT boolean + elements and occupies BYTESIZE bytes in total. Each boolean + element is of COMPONENT type and occupies ((BYTESIZE * BITS_PER_UNIT) + / COUNT) bits, with the element at index 0 occupying the lsb of the + first byte in memory. Only the lowest bit of each element is + significant. OPAQUE_MODE (NAME, BYTESIZE) Create an opaque mode called NAME that is BYTESIZE bytes wide.
