Commit 18c6629a by Richard Henderson Committed by Jeff Law

* cbrt.c: Tweak to work on more targets.

From-SVN: r15098
parent af818dc8
Fri Sep 5 00:20:39 1997 Richard Henderson (rth@cygnus.com)
* cbrt.c: Tweak to work on more targets.
Tue Sep 2 16:34:31 1997 Doug Evans <dje@canuck.cygnus.com>
* lib/gcc-dg.exp (gcc-dg-test): Fix typos setting compile_type.
......
......@@ -28,9 +28,10 @@ cbrtl (double x)
double r,s,w;
double lt;
unsigned sign;
typedef unsigned unsigned32 __attribute__((mode(SI)));
union {
double t;
unsigned long pt[2];
unsigned32 pt[2];
} ut, ux;
int n0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment