Commit 741fa37f by Richard Henderson Committed by Richard Henderson

* gcc.dg/20020219-1.c: Disable for 16-bit targets.

From-SVN: r58141
parent 4f770e7b
2002-10-14 Richard Henderson <rth@redhat.com>
* gcc.dg/20020219-1.c: Disable for 16-bit targets.
2002-10-14 Mark Mitchell <mark@codesourcery.com>
PR optimization/6631
......
......@@ -9,6 +9,9 @@
/* { dg-options "-O2" } */
/* { dg-options "-O2 -mdisable-indexing" { target hppa*-*-hpux* } } */
/* Disable the test entirely for 16-bit targets. */
#if __INT_MAX__ > 32767
extern void abort (void);
extern void exit (int);
struct A {
......@@ -31,3 +34,9 @@ int main (void)
foo (x - 1, 9999);
exit (0);
}
#else
int main () { return 0; }
#endif /* __INT_MAX__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment