]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.python/py-infthread.c
opcodes: bfin: simplify field width processing and fix build warnings
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-infthread.c
1 int f2 (int a)
2 {
3 return ++a;
4 }
5
6 int f1 (int a, int b)
7 {
8 return f2(a) + b;
9 }
10
11 int main (int argc, char *argv[])
12 {
13 return f1 (1, 2);
14 }