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/] [eh/] [synth1.C] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 301 jeremybenn
// PR c++/6179
2
 
3
// Bug: we tried to look at the fields of 'const A' to determine the proper
4
// exception specification for the synthesized copy constructor, but
5
// TYPE_FIELDS hadn't been set yet, so we incorrectly got a throw() spec.
6
 
7
struct B
8
{
9
  B () {}
10
  B (const B&) { throw 1; }
11
};
12
 
13
struct A;
14
void f (const A &) {}
15
struct A
16
{
17
  B b;
18
};
19
 
20
int main ()
21
{
22
  A a;
23
  try
24
    { A a2 (a); }
25
  catch (...)
26
    { }
27
}

powered by: WebSVN 2.1.0

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