Commit eefc884f by Marek Polacek Committed by Marek Polacek

re PR c++/83482 (internal compiler error: Segmentation fault)

	PR tree-optimization/83482
	* g++.dg/torture/pr83482.C: New test.

From-SVN: r255817
parent d0c4eaee
2017-12-19 Marek Polacek <polacek@redhat.com>
PR tree-optimization/83482
* g++.dg/torture/pr83482.C: New test.
2017-12-19 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/83329
......
// PR tree-optimization/83482
// { dg-do compile }
int _setjmp (void **);
void *buf[64];
void a();
struct b {
virtual long c() { return 0L; }
void m_fn2() { c(); }
} d;
void e() {
d.m_fn2();
try {
a();
_setjmp(0);
} catch (...) {
}
}
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