[gdb/testsuite] Reduce errors after gdb exit in default_gdb_start
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / miscexprs.c
CommitLineData
7a292a7a
SS
1void
2marker1 ()
c906108c 3{
7a292a7a 4
c906108c 5}
c906108c 6
7a292a7a
SS
7int
8main ()
c906108c 9{
aaa68313 10 STORAGE struct {
c906108c 11 char c[100];
7a292a7a 12 } cbig;
c906108c 13
aaa68313 14 STORAGE struct {
c906108c 15 int i[800];
7a292a7a 16 } ibig;
c906108c 17
aaa68313 18 STORAGE struct {
c906108c 19 long l[900];
7a292a7a 20 } lbig;
c906108c 21
aaa68313 22 STORAGE struct {
c906108c 23 float f[200];
7a292a7a 24 } fbig;
c906108c 25
aaa68313 26 STORAGE struct {
c906108c 27 double d[300];
7a292a7a 28 } dbig;
c906108c 29
aaa68313 30 STORAGE struct {
c906108c 31 short s[400];
7a292a7a
SS
32 } sbig;
33
34 ibig.i[100] = 5;
35 cbig.c[0] = '\0';
77afa639 36 cbig.c[99] = 'A';
7a292a7a
SS
37 fbig.f[100] = 11.99999;
38 dbig.d[202] = 9.99999999;
39 sbig.s[90] = 255;
40 lbig.l[333] = 999999999;
c906108c 41
7a292a7a
SS
42 marker1 ();
43 return 0;
c906108c 44}
This page took 2.085115 seconds and 4 git commands to generate.