]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
varasm: Fix up ICE in narrowing_initializer_constant_valid_p [PR105998]
authorJakub Jelinek <jakub@redhat.com>
Sat, 18 Jun 2022 09:07:13 +0000 (11:07 +0200)
committerJakub Jelinek <jakub@redhat.com>
Mon, 20 Jun 2022 06:37:57 +0000 (08:37 +0200)
The following testcase ICEs because there is NON_LVALUE_EXPR (location
wrapper) around a VAR_DECL and has TYPE_MODE V2SImode and
SCALAR_INT_TYPE_MODE on that ICEs.  Or for -m32 -march=i386 TYPE_MODE
is DImode, but SCALAR_INT_TYPE_MODE still uses the raw V2SImode and ICEs
too.

2022-06-18  Jakub Jelinek  <jakub@redhat.com>

PR middle-end/105998
* varasm.c (narrowing_initializer_constant_valid_p): Check
SCALAR_INT_MODE_P instead of INTEGRAL_MODE_P, also break on
! INTEGRAL_TYPE_P and do the same check also on op{0,1}'s type.

* c-c++-common/pr105998.c: New test.

(cherry picked from commit ef662120177d39af5f88ffc622d90bb6ae0ca1d3)

gcc/testsuite/c-c++-common/pr105998.c [new file with mode: 0644]
gcc/varasm.c

diff --git a/gcc/testsuite/c-c++-common/pr105998.c b/gcc/testsuite/c-c++-common/pr105998.c
new file mode 100644 (file)
index 0000000..85277b9
--- /dev/null
@@ -0,0 +1,12 @@
+/* PR middle-end/105998 */
+
+typedef int __attribute__((__vector_size__ (sizeof (long long)))) V;
+
+V v;
+
+long long
+foo (void)
+{
+  long long l = (long long) ((0 | v) - ((V) { } == 0));
+  return l;
+}
index 04d59727a7930bbcbb136fda6176e195310e9187..d65985d9748515445009bb9614cefbfffb273358 100644 (file)
@@ -4455,7 +4455,10 @@ narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
     {
       tree inner = TREE_OPERAND (op0, 0);
       if (inner == error_mark_node
-         || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
+         || ! INTEGRAL_TYPE_P (TREE_TYPE (op0))
+         || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op0)))
+         || ! INTEGRAL_TYPE_P (TREE_TYPE (inner))
+         || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
          || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op0)))
              > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner)))))
        break;
@@ -4467,7 +4470,10 @@ narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
     {
       tree inner = TREE_OPERAND (op1, 0);
       if (inner == error_mark_node
-         || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
+         || ! INTEGRAL_TYPE_P (TREE_TYPE (op1))
+         || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op1)))
+         || ! INTEGRAL_TYPE_P (TREE_TYPE (inner))
+         || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
          || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op1)))
              > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner)))))
        break;