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++.brendan/] [ptrmem1.C] - Rev 823

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

// { dg-do assemble  }
// GROUPS passed pointers-to-members
class my_class 
{
public:
  typedef void func_type (int num);
  my_class (int num, func_type* proc);
  void dispatch (void);
private:
  int _num;
  func_type *_proc;
};

my_class::my_class (int num, func_type* proc) : _num(num), _proc(proc) 
{
}

void my_class::dispatch (void)
{
  _proc(_num);
}

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.