re PR middle-end/27724 (internal compiler error: no-op convert from 4 to 8 bytes...
authorJason Merrill <jason@redhat.com>
Fri, 8 Sep 2006 05:11:40 +0000 (01:11 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 8 Sep 2006 05:11:40 +0000 (01:11 -0400)
        PR middle-end/27724
        * varasm.c (output_constant): Only strip actual no-op conversions.

From-SVN: r116777

gcc/ChangeLog
gcc/testsuite/gcc.dg/long-long-cst1.c [new file with mode: 0644]
gcc/varasm.c

index a430e20667a18854f0475d357651045bb88521d8..baa8adc2962df16c03889ddb3ff86e69156ead96 100644 (file)
@@ -1,5 +1,8 @@
 2006-09-07  Jason Merrill  <jason@redhat.com>
 
+       PR middle-end/27724
+       * varasm.c (output_constant): Only strip actual no-op conversions.
+
        PR target/13685
        * config/i386/i386.c (override_options): Use 128-bit
        stack boundary if -msse.
diff --git a/gcc/testsuite/gcc.dg/long-long-cst1.c b/gcc/testsuite/gcc.dg/long-long-cst1.c
new file mode 100644 (file)
index 0000000..7c120dc
--- /dev/null
@@ -0,0 +1,17 @@
+/* PR middle-end/27724 */
+/* { dg-do run } */
+/* { dg-options "" } */
+
+extern void abort();
+
+struct st{
+  int _mark;
+};
+unsigned long long t = ((int)&(((struct st*)16)->_mark) - 32);
+
+int main()
+{
+  if (t != (unsigned long long)(int)-16)
+    abort ();
+}
+
index 9837e0de14742bca6f6dbc36533b5cace9dd080b..3091132ee21ef3153b90338eecf80a29b4e90c6b 100644 (file)
@@ -4039,10 +4039,10 @@ output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
       if (type_size > op_size
          && TREE_CODE (exp) != VIEW_CONVERT_EXPR
          && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
-       internal_error ("no-op convert from %wd to %wd bytes in initializer",
-                       op_size, type_size);
-
-      exp = TREE_OPERAND (exp, 0);
+       /* Keep the conversion. */
+       break;
+      else
+       exp = TREE_OPERAND (exp, 0);
     }
 
   code = TREE_CODE (TREE_TYPE (exp));