Commit 5b5905bb by Claudiu Zissulescu Committed by Claudiu Zissulescu

[ARC][ZOL] Account for empty body loops

gcc/
2017-11-02  Claudiu Zissulescu <claziss@synopsys.com>

	    * config/arc/arc.c (hwloop_optimize): Account for empty
	    body loops.

testsuite/
2017-11-02  Claudiu Zissulescu <claziss@synopsys.com>

 	    * gcc.target/arc/loop-1.c: Add test.

From-SVN: r254339
parent 331b4673
2017-11-02 Claudiu Zissulescu <claziss@synopsys.com>
* config/arc/arc.c (hwloop_optimize): Account for empty
body loops.
2017-11-02 Richard Biener <rguenther@suse.de>
PR middle-end/82765
......@@ -7183,6 +7183,12 @@ hwloop_optimize (hwloop_info loop)
fprintf (dump_file, ";; loop %d too long\n", loop->loop_no);
return false;
}
else if (!loop->length)
{
if (dump_file)
fprintf (dump_file, ";; loop %d is empty\n", loop->loop_no);
return false;
}
/* Check if we use a register or not. */
if (!REG_P (loop->iter_reg))
......@@ -7254,8 +7260,11 @@ hwloop_optimize (hwloop_info loop)
&& INSN_P (last_insn)
&& (JUMP_P (last_insn) || CALL_P (last_insn)
|| GET_CODE (PATTERN (last_insn)) == SEQUENCE
|| get_attr_type (last_insn) == TYPE_BRCC
|| get_attr_type (last_insn) == TYPE_BRCC_NO_DELAY_SLOT))
/* At this stage we can have (insn (clobber (mem:BLK
(reg)))) instructions, ignore them. */
|| (GET_CODE (PATTERN (last_insn)) != CLOBBER
&& (get_attr_type (last_insn) == TYPE_BRCC
|| get_attr_type (last_insn) == TYPE_BRCC_NO_DELAY_SLOT))))
{
if (loop->length + 2 > ARC_MAX_LOOP_LENGTH)
{
......
2017-11-02 Claudiu Zissulescu <claziss@synopsys.com>
* gcc.target/arc/loop-1.c: Add test.
2017-11-02 Tom de Vries <tom@codesourcery.com>
PR testsuite/82415
......
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* Check how we handle empty body loops. */
int a;
void fn1(void) {
int i;
for (; i < 8; i++) {
double A[a];
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment