Commit f634dd47 by Uros Bizjak Committed by Uros Bizjak

unroll-7.c: Declare "a" as a pointer to external array.

	* gcc.dg/unroll-7.c: Declare "a" as a pointer to external array.

From-SVN: r246817
parent 065ba179
2017-04-10 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/unroll-7.c: Declare "a" as a pointer to external array.
2017-04-10 Uros Bizjak <ubizjak@gmail.com>
PR testsuite/79356
* gcc.dg/attr-alloc_size-11.c: Don't xfail on alpha.
......
......@@ -2,7 +2,9 @@
/* { dg-options "-O2 -fdump-rtl-loop2_unroll -funroll-loops" } */
/* { dg-require-effective-target int32plus } */
int t(int *a)
extern int *a;
int t(void)
{
int i;
for (i=0;i<1000000;i++)
......
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