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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [ssa-fre-19.c] - Blame information for rev 826

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre" } */
3
 
4
struct a
5
{
6
  union
7
  {
8
    int a;
9
    int b;
10
  };
11
  union
12
  {
13
    int c;
14
    int d;
15
  };
16
  int e;
17
};
18
 
19
int f(struct a *c)
20
{
21
  int d;
22
  c->e = 2;
23
  d = c->a;
24
  c->c = 1;
25
  return c->a + d;
26
}
27
 
28
/* We should have CSEd the load from c->a.  */
29
 
30
/* { dg-final { scan-tree-dump-times "c_.*\\\.a" 1 "fre" } } */
31
/* { dg-final { cleanup-tree-dump "fre" } } */

powered by: WebSVN 2.1.0

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