[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / miscexprs.c
bloba9930c1da87cf5e0b3021f91f7cbf028b30b1849
1 void
2 marker1 ()
7 int
8 main ()
10 STORAGE struct {
11 char c[100];
12 } cbig;
14 STORAGE struct {
15 int i[800];
16 } ibig;
18 STORAGE struct {
19 long l[900];
20 } lbig;
22 STORAGE struct {
23 float f[200];
24 } fbig;
26 STORAGE struct {
27 double d[300];
28 } dbig;
30 STORAGE struct {
31 short s[400];
32 } sbig;
34 ibig.i[100] = 5;
35 cbig.c[0] = '\0';
36 cbig.c[99] = 'A';
37 fbig.f[100] = 11.99999;
38 dbig.d[202] = 9.99999999;
39 sbig.s[90] = 255;
40 lbig.l[333] = 999999999;
42 marker1 ();
43 return 0;