diff options
| author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-22 08:44:31 +0000 |
|---|---|---|
| committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-22 08:44:31 +0000 |
| commit | d3055c35c8e5095d902a43e3395e82ee3d96557e (patch) | |
| tree | f2f705880702aa9b63120bd999f63c2dc5d6064f | |
| parent | ab596744933ef786b57fefc6a8118f9af15b8e78 (diff) | |
| download | ppe42-gcc-d3055c35c8e5095d902a43e3395e82ee3d96557e.tar.gz ppe42-gcc-d3055c35c8e5095d902a43e3395e82ee3d96557e.zip | |
gcc/
* config/m32c/cond.md (stzx_16): Use register_operand for operand 0.
(stzx_24_<mode>): Likewise mra_operand.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205247 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/m32c/cond.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f4bdca41a4..b122c3f52c9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-11-22 Richard Sandiford <rdsandiford@googlemail.com> + + * config/m32c/cond.md (stzx_16): Use register_operand for operand 0. + (stzx_24_<mode>): Likewise mra_operand. + 2013-11-22 Jeff Law <law@redhat.com> * tree-ssa-threadupdate.c: Include tree-cfg.h and tree-pass.h diff --git a/gcc/config/m32c/cond.md b/gcc/config/m32c/cond.md index 928d7efb289..1fae01d9836 100644 --- a/gcc/config/m32c/cond.md +++ b/gcc/config/m32c/cond.md @@ -75,7 +75,7 @@ ) (define_insn "stzx_16" - [(set (match_operand:QI 0 "mrai_operand" "=R0w,R0w,R0w") + [(set (match_operand:QI 0 "register_operand" "=R0w,R0w,R0w") (if_then_else:QI (eq (reg:CC FLG_REGNO) (const_int 0)) (match_operand:QI 1 "const_int_operand" "i,i,0") (match_operand:QI 2 "const_int_operand" "i,0,i")))] @@ -88,7 +88,7 @@ ) (define_insn "stzx_24_<mode>" - [(set (match_operand:QHI 0 "mrai_operand" "=RraSd,RraSd,RraSd") + [(set (match_operand:QHI 0 "mra_operand" "=RraSd,RraSd,RraSd") (if_then_else:QHI (eq (reg:CC FLG_REGNO) (const_int 0)) (match_operand:QHI 1 "const_int_operand" "i,i,0") (match_operand:QHI 2 "const_int_operand" "i,0,i")))] |

