OSDN Git Service

2004-10-05 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 961203-1.c
index 1d87929..9890858 100644 (file)
@@ -1,8 +1,8 @@
 /* The structure is too large for the xstormy16 - won't fit in 16
    bits.  */
-/* { dg-xfail-if "The array too big" { "h8300-*-*" } { "-mno-h" } { "" } } */
-/* { dg-do assemble { xfail xstormy16-*-* m6811-*-* m6812-*-* } } */
+/* { dg-do assemble } */
 
+#if __INT_MAX__ >= 2147483647L
 struct s {
   char a[0x32100000];
   int x:30, y:30;
@@ -17,3 +17,6 @@ main ()
   if (p->x == p->y)
     exit (1);
 }
+#else
+int g;
+#endif