re PR other/22393 (ICE in emit_move_insn, at expr.c:3142)

PR c/22393
	* gcc.dg/complex-4.c: New test.

From-SVN: r102229
This commit is contained in:
Volker Reichelt 2005-07-21 09:57:05 +00:00 committed by Volker Reichelt
parent 889d84651c
commit 423c1d1c54
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-07-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c/22393
* gcc.dg/complex-4.c: New test.
2005-07-21 Richard Guenther <rguenther@suse.de>
PR testsuite/22522

View File

@ -0,0 +1,7 @@
/* PR c/22393 */
/* { dg-options "-O -std=gnu99" } */
__complex__ double foo (__complex__ double x)
{
return 1.0 / x * -1.0i;
}