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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [thunk1.C] - Rev 301

Compare with Previous | Blame | View Log

// PR 6788
// Test that the thunk adjusts the this pointer properly.
// { dg-do run }

extern "C" void abort ();

struct A
{
  virtual void foo() = 0;
  char large[33*1024];
};

struct B
{
  virtual void foo() = 0;
};

struct C : public A, public B
{
  virtual void foo();
};

static C *match;

void C::foo()
{
  if (this != match)
    abort ();
}

void bar(B *x)
{
  x->foo();
}

int main()
{
  C obj;
  match = &obj;
  bar(&obj);
  return 0;
}

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.