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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [sra-11.c] - Rev 749

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

/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-esra-details" } */
 
struct S
{
  int i;
  int j;
  char c[32]; /* this disables total scalarization */
};
 
extern struct S bar(void);
 
int foo1 (int b)
{
   struct S s1;
 
   s1 = bar ();
   return s1.i;
}
 
extern struct S *g;
 
int foo2 (void)
{
   struct S s2;
 
   s2 = *g;
   return s2.i;
}
 
/* { dg-final { scan-tree-dump-times "Created a replacement for s1" 0 "esra"} } */
/* { dg-final { scan-tree-dump-times "Created a replacement for s2" 1 "esra"} } */
/* { dg-final { cleanup-tree-dump "esra" } } */
 

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

powered by: WebSVN 2.1.0

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