OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / nest.c
1 /* PR 5967, PR 7114 */
2 /* { dg-do run } */
3 /* { dg-require-profiling "-pg" } */
4 /* { dg-options "-O2 -pg" } */
5 /* { dg-options "-O2 -pg -static" { target hppa*-*-hpux* } } */
6 /* { dg-error "profiler" "No profiler support" { target xstormy16-*-* } 0 } */
7 /* { dg-error "-pg not supported" "Profiler support missing" { target *-*-sco3.2v5* } 0 } */
8
9 long foo (long x)
10 {
11   long i, sum = 0;
12   long bar (long z) { return z * 2; }
13
14   for (i = 0; i < x; i++)
15     sum += bar (i);
16
17   return sum;
18 }
19
20 int main (void)
21 {
22   if (foo(10) != 90)
23     abort ();
24   return 0;
25 }