xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/shr2.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)

shr2(int x)1 int shr2(int x)
2 {
3   return 2*x;			/* shr2-return */
4 }
5 
shr2_local(int x)6 int shr2_local(int x)
7 {
8   return 2*x;
9 }
10