20060826-1.c: New testcase.

2006-08-26  Richard Guenther  <rguenther@suse.de>

	* gcc.c-torture/compile/20060826-1.c: New testcase.

From-SVN: r116477
This commit is contained in:
Richard Guenther 2006-08-26 19:27:17 +00:00 committed by Richard Biener
parent 571d5ac5e9
commit ec6aa5008e
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2006-08-26 Richard Guenther <rguenther@suse.de>
* gcc.c-torture/compile/20060826-1.c: New testcase.
2006-08-26 Lee Millward <lee.millward@codesourcery.com>
PR c++/28736

View file

@ -0,0 +1,7 @@
typedef _Complex double S;
S bar (void);
void quux (S, S);
void foo (void)
{
quux (bar(), bar());
}