1  /* { dg-do compile } */
       2  /* { dg-options "-O3 -mvzeroupper" } */
       3  
       4  __attribute__ ((__target__ ("avx")))
       5  float bar (float f) {}
       6  
       7  void foo (float f)
       8  {
       9      bar (f);
      10  }