URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [981007-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
extern double fabs (double); extern double sqrt (double); typedef struct complexm { double re,im; } complex; static complex setCom (double r, double i) { complex ct; ct.re=fabs(r)<1E-300?0.0:r; ct.im=fabs(i)<1E-300?0.0:i; return ct; } static complex csqrt_crash (double x) { return (x>=0) ? setCom(sqrt(x),0) : setCom(0,sqrt(-x)); }
Go to most recent revision | Compare with Previous | Blame | View Log