]> Git Repo - binutils.git/blob - gprof/t.c
* breakpoint.c (insert_breakpoints): Restore warning about
[binutils.git] / gprof / t.c
1 void
2 foo(int x) {
3         if (x&3)
4                 foo (x-1);
5 }
6
7 main() {
8         int i;
9
10         for (i=0; i< 1024; i++)
11                 foo(i);
12 }
This page took 0.031519 seconds and 4 git commands to generate.