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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [eh14.C] - Rev 699

Compare with Previous | Blame | View Log

// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }

class arghh {
public:
  int n;
  arghh (int v) { n = v; }
};

int main () {
  try {
    throw arghh (11);
  }
  catch (arghh& a) {
    if (a.n != 11)
      return 1;
  }
  try {
    throw arghh (22);
  }
  catch (arghh& a) {
    if (a.n != 22)
      return 2;
  }
}

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.