1  /* { dg-do compile } */
       2  /* { dg-options "-std=gnu99 -mpreferred-stack-boundary=4" } */
       3  int
       4  outer_function (int x, int y)
       5  {
       6    int __attribute__ ((__noinline__, __force_align_arg_pointer__))
       7    nested_function (int x, int y)
       8      {
       9        return (x + y);
      10      }
      11    return (3 + nested_function (x, y));
      12  }