From: Bernd Schmidt Date: Mon, 12 Sep 2011 23:38:21 +0000 (+0000) Subject: rtl.c (copy_rtx): Do not handle frame_related, jump or call flags specially. X-Git-Tag: releases/gcc-4.7.0~3801 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e739761805ab2640063cd0be81662ff7b41daaea;p=thirdparty%2Fgcc.git rtl.c (copy_rtx): Do not handle frame_related, jump or call flags specially. * rtl.c (copy_rtx): Do not handle frame_related, jump or call flags specially. From-SVN: r178798 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8253d64486c7..2a8c05bb3631 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-09-13 Bernd Schmidt + + * rtl.c (copy_rtx): Do not handle frame_related, jump or call + flags specially. + 2011-09-12 Jakub Jelinek PR bootstrap/50010 diff --git a/gcc/rtl.c b/gcc/rtl.c index 0e11eeffa090..a812d3118204 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -289,12 +289,6 @@ copy_rtx (rtx orig) 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++)