diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-05 06:19:00 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-05 06:19:00 +0000 |
commit | 29b4f349bac9a07b289ec792a6e162a5790db8b0 (patch) | |
tree | 3e2d443f524e5a568ada03100ccb2c71fda47079 | |
parent | 50a8eecf0cc194c6da686bd257b41b55e5cbd35c (diff) | |
download | gcc-29b4f349bac9a07b289ec792a6e162a5790db8b0.tar.gz |
* cbrt.c: Tweak to work on more targets.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15098 138bc75d-0d04-0410-961f-82ee72b054a4
-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 27d54efe8f7..0ae49474351 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 8f1fe68df1d..8659cc7a723 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; |