re PR testsuite/20767 (gcc.dg/tree-ssa/ssa-pre-8.c scan-tree-dump-times Eliminated: 4 1 fails on 64-bit systems)

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
This commit is contained in:
Andrew Pinski 2005-04-05 22:28:02 +00:00 committed by Andrew Pinski
parent 8b6e769053
commit ebabaeceda
2 changed files with 8 additions and 1 deletions

View 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.

View 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)