mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
re PR tree-optimization/84334 (Stack overflow with -Ofast -frounding-math)
PR tree-optimization/84334 * match.pd ((A +- CST1) +- CST2 -> A + CST3): If A is also a CONSTANT_CLASS_P, punt. * gcc.dg/pr84334.c: New test. From-SVN: r257683
This commit is contained in:
parent
8fa4bd81cb
commit
3eb1eecf29
@ -1,3 +1,9 @@
|
||||
2018-02-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/84334
|
||||
* match.pd ((A +- CST1) +- CST2 -> A + CST3): If A is
|
||||
also a CONSTANT_CLASS_P, punt.
|
||||
|
||||
2018-02-14 Jim Wilson <jimw@sifive.com>
|
||||
|
||||
* config/riscv/riscv.c (riscv_first_stack_step): Move locals after
|
||||
@ -2336,6 +2342,7 @@
|
||||
* config/aarch64/predicates.md (Uti): Add new constraint.
|
||||
|
||||
2018-01-17 Carl Love <cel@us.ibm.com>
|
||||
|
||||
* config/rs6000/vsx.md (define_expand xl_len_r,
|
||||
define_expand stxvl, define_expand *stxvl): Add match_dup argument.
|
||||
(define_insn): Add, match_dup 1 argument to define_insn stxvll and
|
||||
|
@ -1733,9 +1733,12 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
|
||||
CONSTANT_CLASS_P@2)
|
||||
/* If one of the types wraps, use that one. */
|
||||
(if (!ANY_INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_WRAPS (type))
|
||||
(if (outer_op == PLUS_EXPR)
|
||||
(plus (view_convert @0) (inner_op @2 (view_convert @1)))
|
||||
(minus (view_convert @0) (neg_inner_op @2 (view_convert @1))))
|
||||
/* If all 3 captures are CONSTANT_CLASS_P, punt, as we might recurse
|
||||
forever if something doesn't simplify into a constant. */
|
||||
(if (!CONSTANT_CLASS_P (@0))
|
||||
(if (outer_op == PLUS_EXPR)
|
||||
(plus (view_convert @0) (inner_op @2 (view_convert @1)))
|
||||
(minus (view_convert @0) (neg_inner_op @2 (view_convert @1)))))
|
||||
(if (!ANY_INTEGRAL_TYPE_P (TREE_TYPE (@0))
|
||||
|| TYPE_OVERFLOW_WRAPS (TREE_TYPE (@0)))
|
||||
(if (outer_op == PLUS_EXPR)
|
||||
|
@ -1,4 +1,10 @@
|
||||
2018-02-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/84334
|
||||
* gcc.dg/pr84334.c: New test.
|
||||
|
||||
2018-02-14 Carl Love <cel@us.ibm.com>
|
||||
|
||||
* gcc.target/powerpc/builtins-4-int128-runnable.c
|
||||
(dg-require-effective-target): Change vsx_hw to p8vector_hw.
|
||||
(dg-options): Change -maltivec -mvsx to -mpower8-vector.
|
||||
@ -1558,6 +1564,7 @@
|
||||
* gcc.target/powerpc/pr83862.c: New test.
|
||||
|
||||
2018-01-22 Carl Love <cel@us.ibm.com>
|
||||
|
||||
* gcc.target/powerpc/powerpc.exp: Add torture tests for
|
||||
builtins-4-runnable.c, builtins-6-runnable.c,
|
||||
builtins-5-p9-runnable.c, builtins-6-p9-runnable.c.
|
||||
@ -3617,7 +3624,7 @@
|
||||
PR c++/83734
|
||||
* g++.dg/cpp0x/pr83734.C: New test.
|
||||
|
||||
2018-01-09 Carl Love <cel@us.ibm.com>
|
||||
2018-01-09 Carl Love <cel@us.ibm.com>
|
||||
|
||||
* gcc.target/powerpc/builtins-1.c (main): Add tests for vec_mergee and
|
||||
vec_mergeo builtins with float, double, long long, unsigned long long,
|
||||
|
12
gcc/testsuite/gcc.dg/pr84334.c
Normal file
12
gcc/testsuite/gcc.dg/pr84334.c
Normal file
@ -0,0 +1,12 @@
|
||||
/* PR tree-optimization/84334 */
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-Ofast -frounding-math" } */
|
||||
|
||||
float
|
||||
foo (void)
|
||||
{
|
||||
float a = 9.999999974752427078783512115478515625e-7f;
|
||||
float b = 1.999999994950485415756702423095703125e-6f;
|
||||
float c = 4.999999873689375817775726318359375e-6f;
|
||||
return a + b + c;
|
||||
}
|
Loading…
Reference in New Issue
Block a user