* gcc.dg/20020426-2.c: Improve type safety wrt unsignedness.
authorMike Stump <mrs@apple.com>
Thu, 15 Jul 2004 02:21:04 +0000 (02:21 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Thu, 15 Jul 2004 02:21:04 +0000 (02:21 +0000)
From-SVN: r84739

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20020426-2.c

index b98486d19ae1206dade2d046266cfcd23a008a97..5d763cc2f273c1da3613ad50e77fe73a09d3a406 100644 (file)
@@ -1,3 +1,7 @@
+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
index 18a172767a1f6c83af1ce56a49c4a02f613e46ba..56a478f0f7d78fee8ee8cd7cd50c13820eb8120d 100644 (file)
@@ -160,14 +160,14 @@ foo (unsigned int *b, unsigned int n, unsigned int s, const unsigned int *d,
   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)
 {
-  int b = 0, c = 0;
+  unsigned int b = 0, c = 0;
   A *e = 0;
   foo (a, 19, 19, 0, 0, &e, &b, h, &c, d);
   exit (0);