re PR c++/16792 (ICE in gen_subprogram_die, at dwarf2out.c:11267)

PR debug/16792
	* g++.dg/debug/pr16792.C: New test.

From-SVN: r96396
This commit is contained in:
Ben Elliston 2005-03-13 22:17:59 +00:00 committed by Ben Elliston
parent 1da4c3a710
commit 334f3a34cd
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-03-09 Ben Elliston <bje@au.ibm.com>
PR debug/16792
* g++.dg/debug/pr16792.C: New test.
2005-03-13 Joseph S. Myers <joseph@codesourcery.com>
* gcc.dg/anon-struct-6.c, gcc.dg/array-8.c,

View File

@ -0,0 +1,10 @@
// { dg-do compile }
struct S { S(); };
int foo (S b, double j) { };
int main ()
{
int foo (S, double);
S v;
}