[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gdb / testsuite / gdb.base / shmain.c
blob932b83477e2a948853ebd23523be2af6d553fab3
1 /* A test */
3 #include "ss.h"
4 #include <stdio.h>
6 #include "../lib/unbuffer_output.c"
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;
14 int eglob;
16 struct {
17 int a;
18 int b;
19 } s;
21 int g;
23 int local_structarg(struct s x)
25 return x.b;
28 int mainshr1(int g)
30 return 2*g;
33 int main()
35 struct s y;
37 gdb_unbuffer_output ();
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;