Commit de26cf80 by Jakub Jelinek Committed by Jakub Jelinek

catch13.C: New test.

	* g++.old-deja/g++.eh/catch13.C: New test.
	* g++.old-deja/g++.eh/catch14.C: New test.

From-SVN: r41774
parent 2d2a86ae
2001-05-02 Jakub Jelinek <jakub@redhat.com> 2001-05-02 Jakub Jelinek <jakub@redhat.com>
* g++.old-deja/g++.eh/catch13.C: New test.
* g++.old-deja/g++.eh/catch14.C: New test.
2001-05-02 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/cpp/tr-define.c: New test. * gcc.dg/cpp/tr-define.c: New test.
2001-05-01 Loren J. Rittle <ljrittle@acm.org> 2001-05-01 Loren J. Rittle <ljrittle@acm.org>
......
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Jakub Jelinek 2 May 2001 <jakub@redhat.com>
// Build don't link:
// Special g++ Options: -O2
struct A;
A *foo();
struct A {
A *a() { try { return foo(); } catch (...) {} }
void b();
void c();
};
void A::b() {
a()->c();
}
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Jakub Jelinek 2 May 2001 <jakub@redhat.com>
// Build don't link:
// Special g++ Options: -O1
void foo();
struct A {
A (int x) { };
~A() {
try {
foo ();
} catch (...) { }
};
};
struct B;
B *x;
struct B {
void a();
void b();
static B* c() {
A y = 0;
return x;
};
};
void B::a() {
c()->b();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment