Commit ab62fc03 by Richard Guenther Committed by Richard Biener

re PR c++/46364 (basic_string.h:541:32: internal compiler error: Segmentation fault)

2011-04-18  Richard Guenther  <rguenther@suse.de>

	PR middle-end/46364
	* g++.dg/torture/pr46364.C: New testcase.

From-SVN: r172649
parent fa71a2b4
2011-04-18 Richard Guenther <rguenther@suse.de>
PR middle-end/46364
* g++.dg/torture/pr46364.C: New testcase.
2011-04-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* obj-c++.dg/dwarf-2.mm: Skip on alpha*-dec-osf*.
......
// { dg-do compile }
#include <string>
void a() throw (int);
void b(std::string const &);
void c(std::string *e)
{
b("");
try {
a();
} catch (...) {
*e = "";
}
}
void d() {
c(0);
}
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