(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
20060512-4.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target ia32 } */
       3  /* { dg-options "-mstackrealign -mpreferred-stack-boundary=4" } */
       4  int
       5  outer_function (int x, int y)
       6  {
       7    int __attribute__ ((__noinline__))
       8    nested_function (int x, int y)
       9      {
      10        return (x + y);
      11      }
      12    return (3 + nested_function (x, y));
      13  }