OSDN Git Service

2009-10-05 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / copysign-1.C
1 // { dg-options "-O2" }
2 // { dg-do compile }
3 // PR rtl-opt/27883
4 // MIPS used to ICE because local flow update
5 // was not removing an invalid REG_DEAD.
6
7
8 double copysign (double x, double y);
9 double GetDouble();
10 double a = copysign (1.0, GetDouble());