2011-04-18 Richard Guenther <rguenther@suse.de>
PR middle-end/46364
* g++.dg/torture/pr46364.C: New testcase.
From-SVN: r172649
+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*.
--- /dev/null
+// { 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);
+}