Commit 54f80b7e by Tom de Vries Committed by Tom de Vries

re PR testsuite/50322 ([avr]: fail: gcc.dg/tree-ssa/ivopts-lt.c)

2011-09-15  Tom de Vries  <tom@codesourcery.com>

	PR testsuite/50322
	* gcc.dg/tree-ssa/ivopts-lt.c: require stdint_types. include stdint.h.
	Use uintptr_t in f1.  Undo avr xfails.

From-SVN: r178895
parent 167aa8cd
2011-09-15 Tom de Vries <tom@codesourcery.com>
PR testsuite/50322
* gcc.dg/tree-ssa/ivopts-lt.c: require stdint_types. include stdint.h.
Use uintptr_t in f1. Undo avr xfails.
2011-09-15 Janus Weil <janus@gcc.gnu.org>
PR fortran/50401
......
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-ivopts" } */
/* { dg-require-effective-target stdint_types } */
#include "stdint.h"
void
f1 (char *p, unsigned long int i, unsigned long int n)
f1 (char *p, uintptr_t i, uintptr_t n)
{
p += i;
do
......@@ -14,8 +17,7 @@ f1 (char *p, unsigned long int i, unsigned long int n)
while (i < n);
}
/* For the fails on avr see PR tree-optimization/50322. */
/* { dg-final { scan-tree-dump-times "PHI" 1 "ivopts" { xfail { "avr-*-*" } } } } */
/* { dg-final { scan-tree-dump-times "PHI" 1 "ivopts" } } */
/* { dg-final { scan-tree-dump-times "PHI <p_" 1 "ivopts"} } */
/* { dg-final { scan-tree-dump-times "p_\[0-9\]* <" 1 "ivopts" { xfail { "avr-*-*" } } } } */
/* { dg-final { scan-tree-dump-times "p_\[0-9\]* <" 1 "ivopts" } } */
/* { dg-final { cleanup-tree-dump "ivopts" } } */
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