From: Richard Guenther Date: Mon, 18 Apr 2011 14:22:35 +0000 (+0000) Subject: re PR c++/46364 (basic_string.h:541:32: internal compiler error: Segmentation fault) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab62fc03ecdcc3eae67bc5e9d2a39a93d848c6be;p=gcc.git re PR c++/46364 (basic_string.h:541:32: internal compiler error: Segmentation fault) 2011-04-18 Richard Guenther PR middle-end/46364 * g++.dg/torture/pr46364.C: New testcase. From-SVN: r172649 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b8a80b8f434..cedb20fe9b4 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-04-18 Richard Guenther + + PR middle-end/46364 + * g++.dg/torture/pr46364.C: New testcase. + 2011-04-18 Rainer Orth * obj-c++.dg/dwarf-2.mm: Skip on alpha*-dec-osf*. diff --git a/gcc/testsuite/g++.dg/torture/pr46364.C b/gcc/testsuite/g++.dg/torture/pr46364.C new file mode 100644 index 00000000000..8098991ace0 --- /dev/null +++ b/gcc/testsuite/g++.dg/torture/pr46364.C @@ -0,0 +1,20 @@ +// { dg-do compile } +#include + +void a() throw (int); +void b(std::string const &); + +void c(std::string *e) +{ + b(""); + + try { + a(); + } catch (...) { + *e = ""; + } +} + +void d() { + c(0); +}