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
+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.
};
int
-foo (unsigned int i, struct s *array)
+foo (__SIZE_TYPE__ i, struct s *array)
{
int *p = array[i].n;
if (p)