diff options
author | Richard Henderson <rth@cygnus.com> | 1997-09-04 23:19:00 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-05 00:19:00 -0600 |
commit | 18c6629a2bf601a5185491075e5918912f65a8fe (patch) | |
tree | 3e2d443f524e5a568ada03100ccb2c71fda47079 | |
parent | af818dc87c770d1aa7d46026fba1fa0923b88970 (diff) | |
download | gcc-18c6629a2bf601a5185491075e5918912f65a8fe.zip gcc-18c6629a2bf601a5185491075e5918912f65a8fe.tar.gz gcc-18c6629a2bf601a5185491075e5918912f65a8fe.tar.bz2 |
* cbrt.c: Tweak to work on more targets.
From-SVN: r15098
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/cbrt.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 27d54ef..0ae4947 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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. diff --git a/gcc/testsuite/gcc.c-torture/execute/cbrt.c b/gcc/testsuite/gcc.c-torture/execute/cbrt.c index 8f1fe68..8659cc7 100644 --- a/gcc/testsuite/gcc.c-torture/execute/cbrt.c +++ b/gcc/testsuite/gcc.c-torture/execute/cbrt.c @@ -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; |