[Bug middle-end/96426] __builtin_convertvector ICE without lhs

cvs-commit at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Tue Aug 4 09:33:48 GMT 2020


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96426

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:95f5a3258dd8a9584f2b10304f79441ef2d4c64c

commit r11-2540-g95f5a3258dd8a9584f2b10304f79441ef2d4c64c
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Tue Aug 4 11:33:18 2020 +0200

    veclower: Don't ICE on .VEC_CONVERT calls with no lhs [PR96426]

    .VEC_CONVERT is a const internal call, so normally if the lhs is not used,
    we'd DCE it far before getting to veclower, but with -O0 (or perhaps
    -fno-tree-dce and some other -fno-* options) it can happen.
    But as the internal fn needs the lhs to know the type to which the
    conversion is done (and I think that is a reasonable representation, having
    some magic another argument and having to create constants with that type
    looks overkill to me), we just should DCE those calls ourselves.
    During veclower, we can't really remove insns, as the callers would be
    upset, so this just replaces it with a GIMPLE_NOP.

    2020-08-04  Jakub Jelinek  <jakub@redhat.com>

            PR middle-end/96426
            * tree-vect-generic.c (expand_vector_conversion): Replace
.VEC_CONVERT
            call with GIMPLE_NOP if there is no lhs.

            * gcc.c-torture/compile/pr96426.c: New test.


More information about the Gcc-bugs mailing list