diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-11-22 08:44:31 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-11-22 08:44:31 +0000 |
commit | 06ccd3c15437f14456e3c8b75953a685a762dad7 (patch) | |
tree | f2f705880702aa9b63120bd999f63c2dc5d6064f /gcc | |
parent | e7e7f402d587d70a5cfaf378c60d27a6eb5cef98 (diff) | |
download | gcc-06ccd3c15437f14456e3c8b75953a685a762dad7.zip gcc-06ccd3c15437f14456e3c8b75953a685a762dad7.tar.gz gcc-06ccd3c15437f14456e3c8b75953a685a762dad7.tar.bz2 |
cond.md (stzx_16): Use register_operand for operand 0.
gcc/
* config/m32c/cond.md (stzx_16): Use register_operand for operand 0.
(stzx_24_<mode>): Likewise mra_operand.
From-SVN: r205247
Diffstat (limited to 'gcc')
-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 8f4bdca..b122c3f 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 928d7ef..1fae01d 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")))] |