+Thu May 28 00:17:42 1998 Catherine Moore <clm@cygnus.com>
+
+ * gcc.c-torture/execute/980526-3.c: New test.
+
1998-05-27 Manfred Hollstein <manfred@s-direktnet.de>
* g++.old-deja/g++.jason/thunk2.C: Setup this test to be expected to
--- /dev/null
+int compare(x, y)
+unsigned int x;
+unsigned int y;
+{
+ if (x==y)
+ return 0;
+ else
+ return 1;
+}
+
+main()
+{
+ unsigned int i, j, k, l;
+ i = 5; j = 2; k=0; l=2;
+ if (compare(5%(~(unsigned) 2), i%~j)
+ || compare(0, k%~l))
+ abort();
+ else
+ exit(0);
+}