diff options
author | John David Anglin <dave@hiauly1.hia.nrc.ca> | 2001-10-29 19:48:20 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2001-10-29 19:48:20 +0000 |
commit | 4ff3bd5f75eb12cbe12602397e6b2282bcc01c20 (patch) | |
tree | addf9440600ac78944a944ca7769b4d4f1c76b16 | |
parent | 99e9125d776268cf375ad1d6f7871ad96fe668d6 (diff) | |
download | gcc-4ff3bd5f75eb12cbe12602397e6b2282bcc01c20.zip gcc-4ff3bd5f75eb12cbe12602397e6b2282bcc01c20.tar.gz gcc-4ff3bd5f75eb12cbe12602397e6b2282bcc01c20.tar.bz2 |
* pa.md (floatunssisf2): Set subreg 0 of operand 2 to zero.
From-SVN: r46611
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c5d533..05613ff 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-10-29 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * pa.md (floatunssisf2): Set subreg 0 of operand 2 to zero. + Mon Oct 29 07:23:33 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * Makefile.in (OBJS): Put all files in alphabetical order. diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index b069884..9562069 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -3507,7 +3507,7 @@ (define_expand "floatunssisf2" [(set (subreg:SI (match_dup 2) 4) (match_operand:SI 1 "register_operand" "")) - (set (subreg:SI (match_dup 2) 4) + (set (subreg:SI (match_dup 2) 0) (const_int 0)) (set (match_operand:SF 0 "register_operand" "") (float:SF (match_dup 2)))] |