OSDN Git Service

2005-04-05 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Apr 2005 22:28:02 +0000 (22:28 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Apr 2005 22:28:02 +0000 (22:28 +0000)
        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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97661 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 78e6d98..83eed3b 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 f8e1921..2f6393c 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)