* cbrt.c: Tweak to work on more targets.
From-SVN: r15098
This commit is contained in:
parent
af818dc87c
commit
18c6629a2b
@ -1,3 +1,7 @@
|
||||
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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user