OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [loop-18.c] - Blame information for rev 853

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
/* A test for # of iterations estimation.  We know that I does not overflow,
2
   thus we can perform strength reduction (even though the 32-bit variable
3
   i is first extended to 64-bit type).  */
4
 
5
/* { dg-options "-O2 -fdump-tree-optimized" } */
6
/* { dg-do compile { target x86_64-*-* } } */
7
 
8
unsigned bar(void);
9
 
10
void foo(unsigned *p, unsigned n)
11
{
12
  unsigned i;
13
 
14
  for (i = 0; i < n; i++)
15
    p[i] = bar ();
16
}
17
 
18
/* Check that the memory reference was replaced with MEM, and that there is no
19
   multiplication.  */
20
 
21
/* { dg-final { scan-tree-dump-times "MEM" 1 "optimized" } } */
22
/* { dg-final { scan-tree-dump-times "\[^\\n\\r\]*= \\* " 0 "optimized" } } */
23
 
24
/* { dg-final { cleanup-tree-dump "optimized" } } */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.