summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/pc-fp.c
blob: 8c89a0f0b81ac392e5cfeec4d25dfcb0ebed96dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

void
foo (int i)
{
  i++;
  printf ("In foo %d\n", i);
}

int
main ()
{
  foo (1);
}