diff options
author | Andrew Pinski <apinski@marvell.com> | 2023-09-17 21:41:01 +0000 |
---|---|---|
committer | Andrew Pinski <apinski@marvell.com> | 2023-09-17 21:47:05 +0000 |
commit | 51f1287e0a207c60329b64e6085f39766ee8be2a (patch) | |
tree | 68f2c5be1bb8c90a961b2bd39559a5540da2d602 | |
parent | b34f8e705d961260adc2bea95db4361b2e70d565 (diff) | |
download | gcc-51f1287e0a207c60329b64e6085f39766ee8be2a.zip gcc-51f1287e0a207c60329b64e6085f39766ee8be2a.tar.gz gcc-51f1287e0a207c60329b64e6085f39766ee8be2a.tar.bz2 |
Remove xfail from gcc.dg/tree-ssa/20040204-1.c
So the xfail was there because at one point the difference
from having logical-op-non-short-circuit set to 1 or 0 made a
difference in being able to optimizing a conditional way.
This has not been true for over 10 years in this case so
instead of keeping on adding to the xfail list, removing it
is the right thing to do.
Committed as obvious after a test on x86_64-linux-gnu.
gcc/testsuite/ChangeLog:
* gcc.dg/tree-ssa/20040204-1.c: Remove xfail.
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/20040204-1.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/20040204-1.c b/gcc/testsuite/gcc.dg/tree-ssa/20040204-1.c index b9f8fd2..aa9f68b 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/20040204-1.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/20040204-1.c @@ -29,8 +29,4 @@ void test55 (int x, int y) /* There should be not link_error calls, if there is any the optimization has failed */ -/* ??? Ug. This one may or may not fail based on how fold decides - that the && should be emitted (based on BRANCH_COST). Fix this - by teaching dom to look through && and register all components - as true. */ -/* { dg-final { scan-tree-dump-times "link_error" 0 "optimized" { xfail { ! "alpha*-*-* arm*-*-* aarch64*-*-* powerpc*-*-* cris-*-* hppa*-*-* i?86-*-* mmix-*-* mips*-*-* m68k*-*-* moxie-*-* nds32*-*-* s390*-*-* sh*-*-* sparc*-*-* visium-*-* x86_64-*-* riscv*-*-* or1k*-*-* msp430-*-* pru*-*-* nvptx*-*-*" } } } } */ +/* { dg-final { scan-tree-dump-times "link_error" 0 "optimized" } } */ |