OSDN Git Service

* gcc.dg/pr34856.c: Ignore irrelevant warning.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20021018-1.c
index f11de48..f1d296d 100644 (file)
@@ -1,9 +1,11 @@
-/* { dg-do run } */
+/* { dg-do run { target fpic } } */
 /* { dg-options "-O2 -fpic" } */
+/* { dg-bogus "\[Uu\]nresolved symbol .(_GLOBAL_OFFSET_TABLE_|\[_.A-Za-z\]\[_.0-9A-Za-z\]*@(PLT|GOT|GOTOFF))" "PIC unsupported" { xfail *-*-netware* } 0 } */
 
 extern void abort (void);
 extern void exit (int);
 
+#if __INT_MAX__ >= 2147483647L
 static const long foo [10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
 
 long __attribute__((noinline))
@@ -19,3 +21,10 @@ main (void)
     abort ();
   exit (0);
 }
+#else
+int
+main (void)
+{
+  exit (0);
+}
+#endif