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]
Other format: [Raw text]

Re: [patch] Fix gcc.c-torture/execute/20000706-3.c for the v850


 In message <200205032333.QAA12894@cygnus.com>, Catherine Moore writes:
 > :  >         if (TARGET_PROLOG_FUNCTION
 > :  > !         && (i == 2 || i >= 20 && (i < 30)))
 > : Where you trying to write
 > : A || (B && C)
 > : 
 > : or 
 > : 
 > : (A || B) && C
 > : 
 > : It seems to me this should be
 > : 
 > :   && (i == 2 || i >= 20)
 > :   && i < 30
 > : 
 > : Or am I mistaken?
 > 
 >  Jeff,
 > 
 >  Thanks for the close read.
 >  This was an editting error with a patch that didn't apply cleanly.
 > 
 >  This is the new (and I believe correct patch).
OK.  Thanks for fixing this.

jeff


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