diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2003-10-08 23:55:55 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2003-10-08 23:55:55 +0000 |
commit | 8c48b6f562b23e43d50c0c30fbd090df35fecc7c (patch) | |
tree | 323804f15ff31b8f0a8fbefd6cb8a19136c6e903 | |
parent | a5586c386574da2397048bf12b0793a23db405a7 (diff) | |
download | gcc-8c48b6f562b23e43d50c0c30fbd090df35fecc7c.zip gcc-8c48b6f562b23e43d50c0c30fbd090df35fecc7c.tar.gz gcc-8c48b6f562b23e43d50c0c30fbd090df35fecc7c.tar.bz2 |
rs6000.md ("abssi2_isel"): Add early clobber to operand 2.
2003-10-08 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.md ("abssi2_isel"): Add early clobber to
operand 2.
From-SVN: r72247
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2139eab..b964168 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-10-08 Aldy Hernandez <aldyh@redhat.com> + + * config/rs6000/rs6000.md ("abssi2_isel"): Add early clobber to + operand 2. + 2003-10-08 Nathanael Nerode <neroden@gcc.gnu.org> * config.gcc: Don't accept --enable-threads=pthreads. Clean diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index d4e88c7..8e7d255 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -1506,7 +1506,7 @@ (define_insn_and_split "abssi2_isel" [(set (match_operand:SI 0 "gpc_reg_operand" "=r") (abs:SI (match_operand:SI 1 "gpc_reg_operand" "b"))) - (clobber (match_scratch:SI 2 "=b")) + (clobber (match_scratch:SI 2 "=&b")) (clobber (match_scratch:CC 3 "=y"))] "TARGET_ISEL" "#" |