re PR testsuite/20767 (gcc.dg/tree-ssa/ssa-pre-8.c scan-tree-dump-times Eliminated...
authorAndrew Pinski <pinskia@physics.uc.edu>
Tue, 5 Apr 2005 22:28:02 +0000 (22:28 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Tue, 5 Apr 2005 22:28:02 +0000 (15:28 -0700)
2005-04-05  Andrew Pinski  <pinskia@physics.uc.edu>

        PR testsuite/20767
        * gcc.dg/tree-ssa/ssa-pre-8.c (foo): Use __SIZE_TYPE__ instead
        of plain old "unsigned int" for the type of "i".  Makes this test
        64bit clean.

From-SVN: r97661

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-8.c

index 78e6d98282baab87ee78c28a469df145aae7c684..83eed3b387516dd3e7a3e8cd0b527cacd33af2f9 100644 (file)
@@ -1,3 +1,10 @@
+2005-04-05  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       PR testsuite/20767
+       * gcc.dg/tree-ssa/ssa-pre-8.c (foo): Use __SIZE_TYPE__ instead
+       of plain old "unsigned int" for the type of "i".  Makes this test
+       64bit clean.
+
 2005-04-05  Paolo Bonzini  <bonzini@gnu.org>
 
        * gcc.dg/i386-ssefn-1.c: New test.
index f8e19216ec351f4f6b9486b8dd1e5bea8bfb43a4..2f6393cf16dfe23195ce75802c3fe9fd4e4d064d 100644 (file)
@@ -5,7 +5,7 @@ struct s {
 };
 
 int
-foo (unsigned int i, struct s *array)
+foo (__SIZE_TYPE__ i, struct s *array)
 {
   int *p = array[i].n;
   if (p)