xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/shmain.c (revision e5cb852c65c532c79a7d83e6e6c8663886e00327)
1 /* A test */
2 
3 #include "ss.h"
4 #include <stdio.h>
5 
6 #include "../lib/unbuffer_output.c"
7 
8 extern int structarg(struct s);
9 extern int pstructarg(struct s*);
10 extern int shr1(int);
11 extern int shr2(int);
12 extern float sg;
13 
14 int eglob;
15 
16 struct {
17  int a;
18  int b;
19 } s;
20 
21 int g;
22 
local_structarg(struct s x)23 int local_structarg(struct s x)
24 {
25   return x.b;
26 }
27 
mainshr1(int g)28 int mainshr1(int g)
29 {
30   return 2*g;
31 }
32 
main()33 int main()
34 {
35   struct s y;
36 
37   gdb_unbuffer_output ();
38 
39   g = 1;
40   g = shr1(g);
41   g = shr2(g);
42   g = mainshr1(g);
43   sg = 1.1;
44   y.a = 3;
45   y.b = 4;
46   g = local_structarg(y);
47   g = structarg(y);
48   g = pstructarg(&y);
49   return 0;
50 }
51