Commit ebabaece by Andrew Pinski Committed by Andrew Pinski

re PR testsuite/20767 (gcc.dg/tree-ssa/ssa-pre-8.c scan-tree-dump-times…

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
parent 8b6e7690
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.
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment