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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [opt/] [preinc1.C] - Rev 823

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

// PR optimization/6086
// { dg-do run }
// { dg-options "-O" }
 
extern "C" void abort (void);

struct A
{
  A (int x, int y);
  int a, b;
  int foo () { return a; }
  int bar () { return b; }
};

struct B
{
  virtual ~B ();
  virtual A baz () const;
};

struct C
{
  A foo () const;
  B *c;
};

A C::foo () const
{
  int x, y;
  x = c->baz ().foo ();
  y = c->baz ().bar ();
  return A (x, y);
}

A B::baz () const
{
  return A (4, 8);
}

A::A (int x, int y)
{
  a = x;
  b = y;
}

B::~B ()
{
}

int
main ()
{
  C the_c;
  B the_b;
  the_c.c = &the_b;
  if (the_c.foo().a != 4)
    abort ();
  return 0;
}

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.