1  /* { dg-do compile } */
       2  /* { dg-options "-O0 -minline-all-stringops -minline-stringops-dynamically -march=core2" } */
       3  
       4  void bar (float *);
       5  
       6  void foo (void)
       7  {
       8    float b[256] = {0};
       9    bar(b);
      10  }