+2004-07-14 Mike Stump <mrs@apple.com>
+
+ * gcc.dg/20020426-2.c: Improve type safety wrt unsignedness.
+
2004-07-14 James E Wilson <wilson@specifixinc.com>
PR target/16325
2004-07-14 James E Wilson <wilson@specifixinc.com>
PR target/16325
return y != 0 && g != 1 ? (-5) : 0;
}
return y != 0 && g != 1 ? (-5) : 0;
}
-int a[19] = { 3, 4, 0, 2, 2, [17] = 3, 3 };
-int d[19];
+unsigned int a[19] = { 3, 4, 0, 2, 2, [17] = 3, 3 };
+unsigned int d[19];
A h[1440];
int
main (void)
{
A h[1440];
int
main (void)
{
+ unsigned int b = 0, c = 0;
A *e = 0;
foo (a, 19, 19, 0, 0, &e, &b, h, &c, d);
exit (0);
A *e = 0;
foo (a, 19, 19, 0, 0, &e, &b, h, &c, d);
exit (0);