re PR c++/49264 (Internal compiler error: segmentation fault)
authorJakub Jelinek <jakub@redhat.com>
Mon, 6 Jun 2011 17:14:31 +0000 (19:14 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 6 Jun 2011 17:14:31 +0000 (19:14 +0200)
PR c++/49264
* gimple-fold.c (fold_stmt_1): Don't try to fold *& on the lhs
if stmt folded into nothing.
* tree-inline.c (fold_marked_statements): If a builtin at the
end of a bb folded into nothing, just update cgraph edges
and move to next bb.
* cgraph.c (cgraph_update_edges_for_call_stmt_node): Allow new_stmt
to be NULL.  Don't compute count and frequency if new_call is NULL.

* g++.dg/opt/pr49264.C: New test.

From-SVN: r174712

gcc/ChangeLog
gcc/dwarf2out.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/debug/pr49294.c [new file with mode: 0644]

index 165783f85c7197929b1200b2737506fba184e382..967371c09f339e58ee36832eccada2b718bae8a7 100644 (file)
@@ -1,5 +1,9 @@
 2011-06-06  Jakub Jelinek  <jakub@redhat.com>
 
+       PR debug/49294
+       * dwarf2out.c (mem_loc_descriptor) <do_shift>: Give up for
+       non-MODE_INT modes.
+
        PR c++/49264
        * gimple-fold.c (fold_stmt_1): Don't try to fold *& on the lhs
        if stmt folded into nothing.
index b3cf4a65730cb2ed3052a99bb3f0b4326fbc9cf4..0fa7f91fa17e803a2c757589abfde1fa4d3099c4 100644 (file)
@@ -14904,6 +14904,8 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode,
       goto do_shift;
 
     do_shift:
+      if (GET_MODE_CLASS (mode) != MODE_INT)
+       break;
       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
                                VAR_INIT_STATUS_INITIALIZED);
       {
index 6d27ed9ff437ce920ae8f7da9e9dd51e4c81d1e0..4eacaf2522e1115d30c3898d8b8d7aacf3f0ce36 100644 (file)
@@ -1,5 +1,8 @@
 2011-06-06  Jakub Jelinek  <jakub@redhat.com>
 
+       PR debug/49294
+       * gcc.dg/debug/pr49294.c: New test.
+
        PR c++/49264
        * g++.dg/opt/pr49264.C: New test.
 
diff --git a/gcc/testsuite/gcc.dg/debug/pr49294.c b/gcc/testsuite/gcc.dg/debug/pr49294.c
new file mode 100644 (file)
index 0000000..e4869e0
--- /dev/null
@@ -0,0 +1,14 @@
+/* PR debug/49294 */
+/* { dg-do compile } */
+
+typedef __attribute__ ((vector_size ((8) * sizeof (short)))) short V;
+
+int k;
+V v;
+
+void
+foo (void)
+{
+  V w = { k, k, k, k, k, k, k, k };
+  V x = v >> w;
+}