aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr60868.c
blob: c30bbfc18366175aa2f52749b73a60477da73f35 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O0 -minline-all-stringops -minline-stringops-dynamically -march=core2" } */

void bar (float *);

void foo (void)
{
  float b[256] = {0};
  bar(b);
}