This is the mail archive of the gcc-patches@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]

Re: fix error in emit-rtl.c



  In message <199811032103.VAA17370@htbrug.net.HCC.nl>you write:
  > Hello,
  > 
  > I made a small mistake when I made the patch to emit-rtl.c. I fixed the
  > core dump but in the process introduced another bug. The try_split
  > will never be called recursive anymore. Sorry.
  > 
[ .. ]
  >  	  for (tem = NEXT_INSN (before); tem != after;
  >  	       tem = NEXT_INSN (tem))
  > -	    if (! INSN_DELETED_P (tem) && ! GET_CODE (tem) == BARRIER)
  > +	    if (! INSN_DELETED_P (tem) && GET_CODE (tem) != BARRIER)
  >  	      tem = try_split (PATTERN (tem), tem, 1);
???
This does not change the behavior of the if statement as far as I can tell...

! a == b  is the same as a != b last I checked.  Am I not getting enough
sleep?!?

Jeff


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