diff options
author | Alan Modra <amodra@gmail.com> | 2018-11-13 13:42:45 +1030 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2018-11-13 13:42:45 +1030 |
commit | ee0d2718cd3433345e2b9b27b018e08279776a4c (patch) | |
tree | 40ca3e07b4ce8f4faac6bed9570cebc4d06251bd /gcc | |
parent | ab9503741594c8cfff4dc981970edbcf1ca598d6 (diff) | |
download | gcc-ee0d2718cd3433345e2b9b27b018e08279776a4c.zip gcc-ee0d2718cd3433345e2b9b27b018e08279776a4c.tar.gz gcc-ee0d2718cd3433345e2b9b27b018e08279776a4c.tar.bz2 |
[RS6000] Hide insn not needing to be public
* config/rs6000/rs6000.md (addsi3_high): Prefix with '*'.
From-SVN: r266045
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2b8b44a..9950063 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2018-11-13 Alan Modra <amodra@gmail.com> + * config/rs6000/rs6000.md (addsi3_high): Prefix with '*'. + +2018-11-13 Alan Modra <amodra@gmail.com> + * gcc/doc/md.texi (Machine Constraints): Correct rs6000 h constraint description. * config/rs6000/rs6000.md (movsi_internal1): Delete MT%0 case diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 3ed6659..65f5fa6 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -1688,7 +1688,7 @@ addis %0,%1,%v2" [(set_attr "type" "add")]) -(define_insn "addsi3_high" +(define_insn "*addsi3_high" [(set (match_operand:SI 0 "gpc_reg_operand" "=b") (plus:SI (match_operand:SI 1 "gpc_reg_operand" "b") (high:SI (match_operand 2 "" ""))))] |