diff options
author | Carl Love <cel@linux.ibm.com> | 2024-07-29 11:17:14 -0400 |
---|---|---|
committer | Carl Love <cel@linux.ibm.com> | 2024-07-29 11:17:14 -0400 |
commit | b30eda6ad4877508bf0cb5dcc7cba3b18cd5265e (patch) | |
tree | ab7d2a360fe8de9476d522fbe7a2cb5912ed02db /gcc | |
parent | 696d8b9bf3f0ea60da0c24361dc5fe559f97ab77 (diff) | |
download | gcc-b30eda6ad4877508bf0cb5dcc7cba3b18cd5265e.zip gcc-b30eda6ad4877508bf0cb5dcc7cba3b18cd5265e.tar.gz gcc-b30eda6ad4877508bf0cb5dcc7cba3b18cd5265e.tar.bz2 |
rs6000, add comment to VEC_IC definition
This patch adds a comment to the VEC_IC definition to clarify
the V1TI "TARGET_POWER10" mode that was added.
gcc/ChangeLog:
* config/rs6000/vector.md: Add comment for the VEC_IC
define_mode_iterator.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/vector.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/rs6000/vector.md b/gcc/config/rs6000/vector.md index 0d3e0a2..524ba87 100644 --- a/gcc/config/rs6000/vector.md +++ b/gcc/config/rs6000/vector.md @@ -26,7 +26,8 @@ ;; Vector int modes (define_mode_iterator VEC_I [V16QI V8HI V4SI V2DI]) -;; Vector int modes for comparison, shift and rotation +;; Vector int modes for comparison, shift and rotation. ISA 3.1 adds the V1TI mode +;; for the vector int128 type. (define_mode_iterator VEC_IC [V16QI V8HI V4SI V2DI (V1TI "TARGET_POWER10")]) ;; 128-bit int modes |