diff options
author | Michael Collison <michael.collison@linaro.org> | 2015-08-31 03:19:48 +0000 |
---|---|---|
committer | Michael Collison <collison@gcc.gnu.org> | 2015-08-31 03:19:48 +0000 |
commit | 97532d1aab192f93ea8ed0a651f692407ab5e06f (patch) | |
tree | fce4c5d10a951d0b7a2a702716583516f39afc23 /gcc | |
parent | 8f98def6b7d5b9bf3b23b91ff1833b76adff6cca (diff) | |
download | gcc-97532d1aab192f93ea8ed0a651f692407ab5e06f.zip gcc-97532d1aab192f93ea8ed0a651f692407ab5e06f.tar.gz gcc-97532d1aab192f93ea8ed0a651f692407ab5e06f.tar.bz2 |
Rename [su]sum_widen to widen_[su]sum to reflect correct standard names.
From-SVN: r227333
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/md.texi | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f91964d..16b61b2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-08-30 Michael Collison <michael.collison@linaro.org> + + PR other/67320 + * doc.md.texi: Rename [su]sum_widen to widen_[su]sum to reflect correct + standard names + 2015-08-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com> * config/rs6000/rs6000.c (swap_web_entry): Enlarge diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index 0bffdc6..619259f 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -4946,10 +4946,10 @@ is of a wider mode, is computed and added to operand 3. Operand 3 is of a mode equal or wider than the mode of the absolute difference. The result is placed in operand 0, which is of the same mode as operand 3. -@cindex @code{ssum_widen@var{m3}} instruction pattern -@item @samp{ssum_widen@var{m3}} -@cindex @code{usum_widen@var{m3}} instruction pattern -@itemx @samp{usum_widen@var{m3}} +@cindex @code{widen_ssum@var{m3}} instruction pattern +@item @samp{widen_ssum@var{m3}} +@cindex @code{widen_usum@var{m3}} instruction pattern +@itemx @samp{widen_usum@var{m3}} Operands 0 and 2 are of the same mode, which is wider than the mode of operand 1. Add operand 1 to operand 2 and place the widened result in operand 0. (This is used express accumulation of elements into an accumulator |