diff options
author | Tom Rix <trix@redhat.com> | 2002-01-14 19:06:39 +0000 |
---|---|---|
committer | Tom Rix <trix@gcc.gnu.org> | 2002-01-14 19:06:39 +0000 |
commit | 8377288b4f5b6472e11d3363e535bf2b5ef0a266 (patch) | |
tree | 5eaa4bbd5cb34c4470c18943c77ef432a5c7414a | |
parent | c68cd521fa1b275d85b93b157b4cff9415389caa (diff) | |
download | gcc-8377288b4f5b6472e11d3363e535bf2b5ef0a266.zip gcc-8377288b4f5b6472e11d3363e535bf2b5ef0a266.tar.gz gcc-8377288b4f5b6472e11d3363e535bf2b5ef0a266.tar.bz2 |
Fix typo
From-SVN: r48836
-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 d199ca6..bed8af0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-01-14 Tom Rix <trix@redhat.com> + + * config/rs6000/rs6000.md: Fix typo with sradi. + 2002-01-14 Ulrich Weigand <uweigand@de.ibm.com> * config/s390/s390.md (movstrdix_64, movstrsix_31, movstrdi_64, diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 38bd1dd..a33512b 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -12573,7 +12573,7 @@ (neg:DI (gt:DI (match_operand:DI 1 "gpc_reg_operand" "r") (const_int 0))))] "TARGET_POWERPC64" - "subfic %0,%1,0\;addme %0,%0\;sradi} %0,%0,63" + "subfic %0,%1,0\;addme %0,%0\;sradi %0,%0,63" [(set_attr "length" "12")]) (define_insn "" |