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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [inherit/] [covariant4.C] - Diff between revs 301 and 338

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

Rev 301 Rev 338
// { dg-do run }
// { dg-do run }
// Copyright (C) 2002 Free Software Foundation, Inc.
// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 27 Nov 2002 
// Contributed by Nathan Sidwell 27 Nov 2002 
// covariant returns. Fixed & virtual offset.
// covariant returns. Fixed & virtual offset.
struct B1;
struct B1;
struct B2;
struct B2;
struct D;
struct D;
struct B1
struct B1
{
{
  virtual B1 *foo1 () {return this;}
  virtual B1 *foo1 () {return this;}
  virtual B2 *foo2 (D *);
  virtual B2 *foo2 (D *);
};
};
struct B2
struct B2
{
{
  virtual B2 *baz1 () {return this;}
  virtual B2 *baz1 () {return this;}
  virtual B1 *baz2 (D *);
  virtual B1 *baz2 (D *);
};
};
struct Pad1 { virtual ~Pad1 (){}};
struct Pad1 { virtual ~Pad1 (){}};
struct Pad2 { virtual ~Pad2 (){}};
struct Pad2 { virtual ~Pad2 (){}};
struct Proxy1 : Pad1, B1 {};
struct Proxy1 : Pad1, B1 {};
struct Proxy2 : Pad2, B2 {};
struct Proxy2 : Pad2, B2 {};
struct D : virtual Proxy1, virtual Proxy2
struct D : virtual Proxy1, virtual Proxy2
{
{
  virtual D *foo1 () {return this;}
  virtual D *foo1 () {return this;}
  virtual D *foo2 (D *d) {return d;}
  virtual D *foo2 (D *d) {return d;}
  virtual D *baz1 () {return this;}
  virtual D *baz1 () {return this;}
  virtual D *baz2 (D *d) {return d;}
  virtual D *baz2 (D *d) {return d;}
};
};
B2 *B1::foo2 (D *d) {return d;}
B2 *B1::foo2 (D *d) {return d;}
B1 *B2::baz2 (D *d) {return d;}
B1 *B2::baz2 (D *d) {return d;}
int test (B1 *b1, B2 *b2, D *d)
int test (B1 *b1, B2 *b2, D *d)
{
{
  if (b1->foo1 () != b1)
  if (b1->foo1 () != b1)
    return 1;
    return 1;
  if (b2->baz1 () != b2)
  if (b2->baz1 () != b2)
    return 2;
    return 2;
  if (b1->foo2 (d) != b2)
  if (b1->foo2 (d) != b2)
    return 3;
    return 3;
  if (b2->baz2 (d) != b1)
  if (b2->baz2 (d) != b1)
    return 4;
    return 4;
  return 0;
  return 0;
}
}
int test (D *d)
int test (D *d)
{
{
  if (d->foo2 (d) != d)
  if (d->foo2 (d) != d)
    return 11;
    return 11;
  if (d->baz2 (d) != d)
  if (d->baz2 (d) != d)
    return 12;
    return 12;
  if (d->foo1 () != d)
  if (d->foo1 () != d)
    return 13;
    return 13;
  if (d->baz1 () != d)
  if (d->baz1 () != d)
    return 14;
    return 14;
  return 0;
  return 0;
}
}
int main ()
int main ()
{
{
  D d;
  D d;
  int r;
  int r;
  if ((r = test (&d, &d, &d)))
  if ((r = test (&d, &d, &d)))
    return r;
    return r;
  if ((r = test (&d)))
  if ((r = test (&d)))
    return r;
    return r;
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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