diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-10-21 05:33:20 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-10-20 23:33:20 -0600 |
commit | e54635a2f345d548f9c488b41e296708f1b76068 (patch) | |
tree | 2d029582e10a5aef2ce4950419d8c3307cb5548a /gcc | |
parent | b768aa38c282f457363d03d438d5c2aed52be7a6 (diff) | |
download | gcc-e54635a2f345d548f9c488b41e296708f1b76068.zip gcc-e54635a2f345d548f9c488b41e296708f1b76068.tar.gz gcc-e54635a2f345d548f9c488b41e296708f1b76068.tar.bz2 |
sparc.md (movsf_const_intreg): If splitting, length must be > 1.
* sparc.md (movsf_const_intreg): If splitting, length must be > 1.
(movdf_const_intreg_sp64): Similarly.
From-SVN: r30112
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.md | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index badba04..b67d09c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Wed Oct 20 22:57:58 1999 Jeffrey A Law (law@cygnus.com) + * sparc.md (movsf_const_intreg): If splitting, length must be > 1. + (movdf_const_intreg_sp64): Similarly. + * local-alloc.c (update_equiv_regs): Check the correct insn for pre-existing REG_EQUIV notes. diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index c93f5eb..e6bfbc1 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -2771,7 +2771,7 @@ return \"#\"; }" [(set_attr "type" "move") - (set_attr "length" "1")]) + (set_attr "length" "1,2")]) ;; There isn't much I can do about this, if I change the ;; mode then flow info gets really confused because the @@ -2932,7 +2932,7 @@ ldd\\t%1, %0 #" [(set_attr "type" "move") - (set_attr "length" "1")]) + (set_attr "length" "1,2")]) (define_split [(set (match_operand:DF 0 "register_operand" "") |