From: Richard Sandiford Date: Mon, 31 Mar 2003 06:28:56 +0000 (+0000) Subject: gcse.c (simple_mem): Return false for floating-point accesses if flag_float_store... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98d3d336205c751fcf2f6a31a5b5553994556060;p=gcc.git gcse.c (simple_mem): Return false for floating-point accesses if flag_float_store is true. * gcse.c (simple_mem): Return false for floating-point accesses if flag_float_store is true. From-SVN: r65076 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 266e9c750ef..ebb5b7ef41a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-31 Richard Sandiford + + * gcse.c (simple_mem): Return false for floating-point accesses + if flag_float_store is true. + 2003-03-30 Roger Sayle * gcse.c (gcse_constant_p): New function to identify constants diff --git a/gcc/gcse.c b/gcc/gcse.c index d41a11757bd..ae9d720c9c1 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -6657,6 +6657,9 @@ simple_mem (x) if (GET_MODE (x) == BLKmode) return 0; + if (flag_float_store && FLOAT_MODE_P (GET_MODE (x))) + return 0; + if (!rtx_varies_p (XEXP (x, 0), 0)) return 1; diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1eb28366e53..2469ea4ed73 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-03-31 Richard Sandiford + + * gcc.c-torture/execute/ieee/20030331-1.c: New test. + 2003-03-30 Mark Mitchell PR c++/7647 diff --git a/gcc/testsuite/gcc.c-torture/execute/ieee/20030331-1.c b/gcc/testsuite/gcc.c-torture/execute/ieee/20030331-1.c new file mode 100644 index 00000000000..64d87e13b68 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/execute/ieee/20030331-1.c @@ -0,0 +1,32 @@ +extern void exit (int); +extern void abort (void); +float x = -1.5f; + +float +rintf () +{ + static const float TWO23 = 8388608.0; + + if (__builtin_fabs (x) < TWO23) + { + if (x > 0.0) + { + x += TWO23; + x -= TWO23; + } + else if (x < 0.0) + { + x = TWO23 - x; + x = -(x - TWO23); + } + } + + return x; +} + +int main (void) +{ + if (rintf () != -2.0) + abort (); + exit (0); +}