From: Richard Henderson Date: Fri, 5 Sep 1997 06:19:00 +0000 (-0700) Subject: * cbrt.c: Tweak to work on more targets. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18c6629a2bf601a5185491075e5918912f65a8fe;p=gcc.git * cbrt.c: Tweak to work on more targets. From-SVN: r15098 --- 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 * 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;