* rtl.c (copy_rtx): Do not handle frame_related, jump or call
flags specially.
From-SVN: r178798
+2011-09-13 Bernd Schmidt <bernds@codesourcery.com>
+
+ * rtl.c (copy_rtx): Do not handle frame_related, jump or call
+ flags specially.
+
2011-09-12 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/50010
walks over the RTL. */
RTX_FLAG (copy, used) = 0;
- /* We do not copy FRAME_RELATED for INSNs. */
- if (INSN_P (orig))
- RTX_FLAG (copy, frame_related) = 0;
- RTX_FLAG (copy, jump) = RTX_FLAG (orig, jump);
- RTX_FLAG (copy, call) = RTX_FLAG (orig, call);
-
format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)