mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-12-28 08:30:35 +00:00
15 lines
218 B
C
15 lines
218 B
C
/* { dg-do run } */
|
|
/* { dg-options "-O2 -fwrapv" } */
|
|
|
|
extern void abort (void);
|
|
extern void exit (int);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
struct { int count: 2; } s = { -2 };
|
|
while (s.count-- != -2)
|
|
abort ();
|
|
exit (0);
|
|
}
|