Commit fd71825b by Senthil Kumar Selvaraj Committed by Senthil Kumar Selvaraj

Fix broken cunroll-13.c for avr target

The test reports bogus failures because the loop variable i is declared
as int, and the constant expected in the dump doesn't fit in an int for avr.
Fixed by explicitly using __INT32_TYPE__ for targets with __SIZEOF_INT__ < 4.

gcc/testsuite/

2017-05-09  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>

	* gcc.dg/tree-ssa/cunroll-13.c: Use __INT32_TYPE__ for
	for targets with __SIZEOF_INT__ < 4.

From-SVN: r247782
parent 39032dee
2017-05-09 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
* gcc.dg/tree-ssa/cunroll-13.c: Use __INT32_TYPE__ for
for targets with __SIZEOF_INT__ < 4.
2017-05-09 Richard Biener <rguenther@suse.de> 2017-05-09 Richard Biener <rguenther@suse.de>
* gcc.dg/vect/vect-50.c: Revert last change. * gcc.dg/vect/vect-50.c: Revert last change.
......
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-O3 -fdisable-tree-evrp -fdisable-tree-cunrolli -fdisable-tree-vrp1 -fdump-tree-cunroll-blocks-details" } */ /* { dg-options "-O3 -fdisable-tree-evrp -fdisable-tree-cunrolli -fdisable-tree-vrp1 -fdump-tree-cunroll-blocks-details" } */
#if __SIZEOF_INT__ < 4
__extension__ typedef __INT32_TYPE__ i32;
#else
typedef int i32;
#endif
struct a {int a[8];int b;}; struct a {int a[8];int b;};
void void
t(struct a *a) t(struct a *a)
{ {
for (int i=0;i<123456 && a->a[i];i++) for (i32 i=0;i<123456 && a->a[i];i++)
a->a[i]++; a->a[i]++;
} }
/* This pass relies on the fact that we do not eliminate the redundant test for i early. /* This pass relies on the fact that we do not eliminate the redundant test for i early.
......
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