merge from gcc
[external/binutils.git] / gdb / testsuite / gdb.base / miscexprs.c
index 41bd29f..fe88fb2 100644 (file)
@@ -7,33 +7,33 @@ marker1 ()
 int
 main ()
 {
-  struct {
+  STORAGE struct {
     char c[100];
   } cbig;
 
-  struct {
+  STORAGE struct {
     int i[800];
   } ibig;
 
-  struct {
+  STORAGE struct {
     long l[900];
   } lbig;
 
-  struct {
+  STORAGE struct {
     float f[200];
   } fbig;
 
-  struct {
+  STORAGE struct {
     double d[300];
   } dbig;
 
-  struct {
+  STORAGE struct {
     short s[400];
   } sbig;
 
   ibig.i[100] = 5;
   cbig.c[0] = '\0';
-  cbig.c[100] = 'A';
+  cbig.c[99] = 'A';
   fbig.f[100] = 11.99999;
   dbig.d[202] = 9.99999999;
   sbig.s[90] = 255;