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


Jeffrey A Law wrote:
>[...]
>   > -       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?!?

You need more sleep !! 

! a == b  <=>  (! a) == b

John.


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