OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20060215-1.c] - Diff between revs 297 and 338

Only display areas with differences | Details | Blame | View Log

Rev 297 Rev 338
/* PR middle-end/26300 */
/* PR middle-end/26300 */
 
 
struct S
struct S
{
{
  char c;
  char c;
  struct S *d;
  struct S *d;
  struct S *e;
  struct S *e;
};
};
extern struct S *u, *v;
extern struct S *u, *v;
extern void fn1 (struct S *) __attribute__ ((noreturn));
extern void fn1 (struct S *) __attribute__ ((noreturn));
void fn2 (struct S *);
void fn2 (struct S *);
 
 
static inline struct S *
static inline struct S *
fn3 (struct S *x)
fn3 (struct S *x)
{
{
  if (x->c != 6)
  if (x->c != 6)
    fn1 (0);
    fn1 (0);
  return (struct S *) x;
  return (struct S *) x;
}
}
 
 
static inline int
static inline int
fn4 (struct S *x)
fn4 (struct S *x)
{
{
  if (x != u)
  if (x != u)
    return 3;
    return 3;
  fn2 (x);
  fn2 (x);
  return 0;
  return 0;
}
}
 
 
int
int
test (struct S *x)
test (struct S *x)
{
{
  struct S *r;
  struct S *r;
  int m = 0;
  int m = 0;
 
 
  for (r = x; r != v; r = (fn3 (r)->d))
  for (r = x; r != v; r = (fn3 (r)->d))
    if (r->c != 6)
    if (r->c != 6)
      fn1 (x);
      fn1 (x);
    else
    else
      m |= 1 << (fn4 (fn3 (r)->e) - 1);
      m |= 1 << (fn4 (fn3 (r)->e) - 1);
  return m;
  return m;
}
}
 
 

powered by: WebSVN 2.1.0

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