This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RTL_FLAG_CHECK patch


> Please install the change to remove it, I agree with your analysis and
> I thus preapprove such a patch.  Please still post it here when you
> install it, just for reference.

Installed on main.  Bootstrapped and regression checked on hppa-linux.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)

2002-05-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>

	* reorg.c (dbr_schedule): Remove unnecessary test.

Index: reorg.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/reorg.c,v
retrieving revision 1.75
diff -u -3 -p -r1.75 reorg.c
--- reorg.c	10 May 2002 20:12:59 -0000	1.75
+++ reorg.c	11 May 2002 17:12:21 -0000
@@ -3630,10 +3630,7 @@ dbr_schedule (first, file)
     {
       rtx target;
 
-      if (GET_CODE (insn) == JUMP_INSN
-	  || GET_CODE (insn) == CALL_INSN
-	  || GET_CODE (insn) == INSN)
-	INSN_ANNULLED_BRANCH_P (insn) = 0;
+      INSN_ANNULLED_BRANCH_P (insn) = 0;
       INSN_FROM_TARGET_P (insn) = 0;
 
       /* Skip vector tables.  We can't get attributes for them.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]