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

From-SVN: r58141
This commit is contained in:
Richard Henderson 2002-10-14 15:07:18 -07:00 committed by Richard Henderson
parent 4f770e7b9d
commit 741fa37f8b
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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__ */