Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980526-3.c
bloba564174e2837385a4659d8fc45a7a5bbf0964f31
1 int compare(x, y)
2 unsigned int x;
3 unsigned int y;
5 if (x==y)
6 return 0;
7 else
8 return 1;
11 main()
13 unsigned int i, j, k, l;
14 i = 5; j = 2; k=0; l=2;
15 if (compare(5%(~(unsigned) 2), i%~j)
16 || compare(0, k%~l))
17 abort();
18 else
19 exit(0);