Commit 9c5923ae by Richard Henderson

New test.

From-SVN: r105600
parent 821af619
/* { dg-do run } */
/* { dg-options "-O2" } */
__thread double thrtest[81];
int main ()
{
double *p, *e;
e = &thrtest[81];
for (p = &thrtest[0]; p < e; ++p)
*p = 1.0;
return 0;
}
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