diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-16 16:11:00 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-16 16:11:00 +0000 |
commit | bbdfcf3462b7fc2bd01b59c380f1420170f819da (patch) | |
tree | 151f058d31629859a64d2c1171d2f55fdcb003d3 /gcc/config/mep | |
parent | 1090f26fd84c35ec887a79ee2df012ebcce0a116 (diff) | |
download | gcc-bbdfcf3462b7fc2bd01b59c380f1420170f819da.tar.gz |
* loop-doloop.c (doloop_modify): Pass doloop_end pattern to
gen_doloop_begin.
(doloop_optimize): Pass flag to indicate if loop is entered at top
to gen_doloop_end.
* config/arm/thumb2.md (doloop_end): Accept extra operand.
* config/bfin/bfin.md (doloop_end): Likewise.
* config/c6x/c6x.md (doloop_end): Likewise.
* config/ia64/ia64.md (doloop_end): Likewise.
* config/mep/mep.md (doloop_begin, doloop_end): Likewise.
* config/rs6000/rs6000.md (doloop_end): Likewise.
* config/s390/s390.md (doloop_end): Likewise.
* config/sh/sh.md (doloop_end): Likewise.
* config/spu/spu.md (doloop_end): Likewise.
* config/tilegx/tilegx.md (doloop_end): Likewise.
* config/tilepro/tilepro.md (doloop_end): Likewise.
* doc/md.texi (doloop_end): Document new operand.
* basic-block.h (contains_no_active_insn_p): Declare.
* cfgrtl.c (contains_no_active_insn_p): New function, factored
out of ...
(forwarder_block_p): ... here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192505 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mep')
-rw-r--r-- | gcc/config/mep/mep.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config/mep/mep.md b/gcc/config/mep/mep.md index 773a9a0aa14..35b6e1490bc 100644 --- a/gcc/config/mep/mep.md +++ b/gcc/config/mep/mep.md @@ -2079,7 +2079,8 @@ [(use (match_operand 0 "register_operand" "")) (use (match_operand:QI 1 "const_int_operand" "")) (use (match_operand:QI 2 "const_int_operand" "")) - (use (match_operand:QI 3 "const_int_operand" ""))] + (use (match_operand:QI 3 "const_int_operand" "")) + (use (match_operand 4 "" ""))] "!profile_arc_flag && TARGET_OPT_REPEAT" "if (INTVAL (operands[3]) > 1) FAIL; @@ -2115,7 +2116,8 @@ (use (match_operand:QI 1 "const_int_operand" "")) (use (match_operand:QI 2 "const_int_operand" "")) (use (match_operand:QI 3 "const_int_operand" "")) - (use (label_ref (match_operand 4 "" "")))] + (use (label_ref (match_operand 4 "" ""))) + (use (match_operand 5 "" ""))] "!profile_arc_flag && TARGET_OPT_REPEAT" "if (INTVAL (operands[3]) > 1) FAIL; |