1/* { dg-do compile } */
2/* { dg-options "-mstack-arg-probe" } */
3
4extern void bar (void);
5
6void foo (int i)
7{
8  bar ();
9}
10