From: rsandifo Date: Fri, 22 Nov 2013 08:44:31 +0000 (+0000) Subject: gcc/ X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3055c35c8e5095d902a43e3395e82ee3d96557e;p=thirdparty%2Fgcc.git gcc/ * config/m32c/cond.md (stzx_16): Use register_operand for operand 0. (stzx_24_): Likewise mra_operand. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205247 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f4bdca41a46..b122c3f52c9d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-11-22 Richard Sandiford + + * config/m32c/cond.md (stzx_16): Use register_operand for operand 0. + (stzx_24_): Likewise mra_operand. + 2013-11-22 Jeff Law * 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 928d7efb2899..1fae01d9836f 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_" - [(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")))]