tcc-65816/test/tests/vrp-4.c
2017-06-09 13:52:12 +02:00

21 lines
204 B
C

extern void exit (int);
extern void abort ();
void test(int x, int y)
{
int c;
if (x == 1) abort();
if (y == 1) abort();
c = x / y;
if (c != 1) abort();
}
int main()
{
test(2, 2);
exit (0);
}