testsuite: Fix pr55569.c excess errors on LLP64
This fixes the following on LLP64 mingw-w64 target: Excess errors: gcc/testsuite/gcc.c-torture/compile/pr55569.c:13:12: warning: overflow in conversion from 'long long unsigned int' to 'long int' changes value from '4611686018427387903' to '-1' [-Woverflow] gcc/testsuite/gcc.c-torture/compile/pr55569.c:13:34: warning: iteration 2147483647 invokes undefined behavior [-Waggressive-loop-optimizations] gcc/testsuite/ChangeLog: * gcc.c-torture/compile/pr55569.c: fix excess errors. Signed-off-by: Jonathan Yong <10walls@gmail.com>
This commit is contained in:
parent
193fccaa5c
commit
37d8312f56
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ int *bar (void);
|
|||
void
|
||||
foo (void)
|
||||
{
|
||||
long x;
|
||||
__INTPTR_TYPE__ x;
|
||||
int *y = bar ();
|
||||
|
||||
/* The loop below may be optimized to a call to memset with a size
|
||||
|
|
Loading…
Add table
Reference in a new issue