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:
parent
8b6e769053
commit
ebabaeceda
2 changed files with 8 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue