diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-02-05 10:17:18 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-02-05 10:17:18 +0100 |
commit | c8010d70be43ae96908bb82000518e03b5b65829 (patch) | |
tree | 9f8f49e48a7b17069999deb827417b11ec01d606 /gcc | |
parent | 7eeb6fc25cf78a0171e8a956f877f95427a01796 (diff) | |
download | gcc-c8010d70be43ae96908bb82000518e03b5b65829.zip gcc-c8010d70be43ae96908bb82000518e03b5b65829.tar.gz gcc-c8010d70be43ae96908bb82000518e03b5b65829.tar.bz2 |
re PR target/89186 (ICE in mark_addressable at gcc/gimple-expr.c:894 since r268138)
PR target/89186
* optabs.c (prepare_cmp_insn): Pass x and y to
emit_block_comp_via_libcall rather than XEXP (x, 0) and XEXP (y, 0).
* g++.dg/ext/vector36.C: New test.
From-SVN: r268531
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/optabs.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/ext/vector36.C | 6 |
4 files changed, 18 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7c8b50..76a3e18 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2019-02-05 Jakub Jelinek <jakub@redhat.com> + + PR target/89186 + * optabs.c (prepare_cmp_insn): Pass x and y to + emit_block_comp_via_libcall rather than XEXP (x, 0) and XEXP (y, 0). + 2019-02-05 Richard Biener <rguenther@suse.de> PR middle-end/89150 diff --git a/gcc/optabs.c b/gcc/optabs.c index ecda620..f2ca435 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -3917,7 +3917,7 @@ prepare_cmp_insn (rtx x, rtx y, enum rtx_code comparison, rtx size, goto fail; /* Otherwise call a library function. */ - result = emit_block_comp_via_libcall (XEXP (x, 0), XEXP (y, 0), size); + result = emit_block_comp_via_libcall (x, y, size); x = result; y = const0_rtx; diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8a77c00..51879b8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-02-05 Jakub Jelinek <jakub@redhat.com> + + PR target/89186 + * g++.dg/ext/vector36.C: New test. + 2019-02-05 Alexandre Oliva <aoliva@redhat.com> PR c++/87770 diff --git a/gcc/testsuite/g++.dg/ext/vector36.C b/gcc/testsuite/g++.dg/ext/vector36.C new file mode 100644 index 0000000..b637f08 --- /dev/null +++ b/gcc/testsuite/g++.dg/ext/vector36.C @@ -0,0 +1,6 @@ +// PR target/89186 +// { dg-do compile } +// { dg-options "-fnon-call-exceptions" } +// { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } + +#include "vector27.C" |