1 2 3 4 5 6 7 8 9 10 11 12 13
/* { dg-additional-options "-std=gnu89" } */ f (x, y) { if (x % y != 0) abort (); } main () { f (-5, 5); exit (0); }