diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-28 22:59:44 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-28 22:59:44 +0000 |
commit | df98cb733006d7fc2fc0b25c282676eff65a3dde (patch) | |
tree | 710e3196a5e6bd1a9ecec8c2bdf50c8814a731d1 | |
parent | f10bf761e8c96a30fe7b737b343404fde2969766 (diff) | |
download | gcc-df98cb733006d7fc2fc0b25c282676eff65a3dde.tar.gz |
2005-06-28 Andrew Pinski <pinskia@physics.uc.edu>
* config/rs6000/rs6000.md (setmemsi): s/operand/operands/.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101397 138bc75d-0d04-0410-961f-82ee72b054a4
-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 cf9c27bbce3..53c69551a6e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-06-28 Andrew Pinski <pinskia@physics.uc.edu> + + * config/rs6000/rs6000.md (setmemsi): s/operand/operands/. + 2005-06-28 Richard Henderson <rth@redhat.com> * config/ia64/ia64.c (ia64_expand_vecint_compare): Use unsigned diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index cfdd3c32c49..6d0e58146b5 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -8622,7 +8622,7 @@ " { /* If value to set is not zero, use the library routine. */ - if (operand[2] != const0_rtx) + if (operands[2] != const0_rtx) FAIL; if (expand_block_clear (operands)) |