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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.abi/] [primary3.C] - Diff between revs 149 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// { dg-do run  }
// { dg-do run  }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 4 February 2001 
// Contributed by Nathan Sidwell 4 February 2001 
// Check primary bases are chosen correctly.
// Check primary bases are chosen correctly.
struct A {virtual void Foo () {}};
struct A {virtual void Foo () {}};
struct B1 : virtual A {};
struct B1 : virtual A {};
struct B2 : virtual A {};
struct B2 : virtual A {};
struct C : virtual B1, B2 {};
struct C : virtual B1, B2 {};
struct D : virtual C {};
struct D : virtual C {};
int main ()
int main ()
{
{
  C c;
  C c;
  D d;
  D d;
  A *apc = &c;
  A *apc = &c;
  B1 *b1pc = &c;
  B1 *b1pc = &c;
  B2 *b2pc = &c;
  B2 *b2pc = &c;
  A *apd = &d;
  A *apd = &d;
  B1 *b1pd = &d;
  B1 *b1pd = &d;
  B2 *b2pd = &d;
  B2 *b2pd = &d;
  C *cpd = &d;
  C *cpd = &d;
#if __GXX_ABI_VERSION >= 100
#if __GXX_ABI_VERSION >= 100
  if (static_cast  (apc) != static_cast  (b1pc))
  if (static_cast  (apc) != static_cast  (b1pc))
    return 1;
    return 1;
  if (static_cast  (&c) != static_cast  (b2pc))
  if (static_cast  (&c) != static_cast  (b2pc))
    return 2;
    return 2;
  if (static_cast  (b1pc) == static_cast  (b2pc))
  if (static_cast  (b1pc) == static_cast  (b2pc))
    return 3;
    return 3;
  if (static_cast  (apd) != static_cast  (b1pd))
  if (static_cast  (apd) != static_cast  (b1pd))
    return 11;
    return 11;
  if (static_cast  (b2pd) != static_cast  (&d))
  if (static_cast  (b2pd) != static_cast  (&d))
    return 12;
    return 12;
  if (static_cast  (b2pd) != static_cast  (cpd))
  if (static_cast  (b2pd) != static_cast  (cpd))
    return 13;
    return 13;
  if (static_cast  (b1pd) == static_cast  (b2pd))
  if (static_cast  (b1pd) == static_cast  (b2pd))
    return 14;
    return 14;
#endif
#endif
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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