diff options
author | Kewen Lin <linkw@linux.ibm.com> | 2022-06-06 22:08:23 -0500 |
---|---|---|
committer | Kewen Lin <linkw@linux.ibm.com> | 2022-06-06 22:08:23 -0500 |
commit | 63eab5d5775da6c656f3527ad974b7dc25f5ad5e (patch) | |
tree | 6f686f54b8034aa529f3ea37a1e385c3e99364c6 /gcc | |
parent | 70e2ffbcb4fe1695a6a4ab1bece854704ea11acc (diff) | |
download | gcc-63eab5d5775da6c656f3527ad974b7dc25f5ad5e.zip gcc-63eab5d5775da6c656f3527ad974b7dc25f5ad5e.tar.gz gcc-63eab5d5775da6c656f3527ad974b7dc25f5ad5e.tar.bz2 |
Update document for VECTOR_MODES_WITH_PREFIX
r10-3912 updated the format of VECTOR_MODES_WITH_PREFIX by
adding one more parameter ORDER, the related document is out
of date. So update the document for ORDER.
gcc/ChangeLog:
* machmode.def (VECTOR_MODES_WITH_PREFIX): Update document for
parameter ORDER.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/machmode.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/machmode.def b/gcc/machmode.def index b62a5fb..d625636 100644 --- a/gcc/machmode.def +++ b/gcc/machmode.def @@ -142,9 +142,10 @@ along with GCC; see the file COPYING3. If not see than two bytes (if CLASS is FLOAT). CLASS must be INT or FLOAT. The names follow the same rule as VECTOR_MODE uses. - VECTOR_MODES_WITH_PREFIX (PREFIX, CLASS, WIDTH); + VECTOR_MODES_WITH_PREFIX (PREFIX, CLASS, WIDTH, ORDER); Like VECTOR_MODES, but start the mode names with PREFIX instead - of the usual "V". + of the usual "V". ORDER is the top-level sorting order of the + 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 |