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: RFC: Improvements to alternate-entry-point handling


On Thu, Jul 18, 2002 at 02:01:39AM +0100, Graham Stott wrote:
> Zack Weinberg wrote:
> 
> >+#define SET_LABEL_KIND(LABEL, KIND) do {				\
> >+   rtx _label = (LABEL);						\
> >+   unsigned int _kind = (KIND);					 \
> >+   if (GET_CODE (_label) != CODE_LABEL)				 \
> >+     rtl_check_failed_flag ("SET_LABEL_KIND", _label, __FILE__, __LINE__, 
> >\
> >+			    __FUNCTION__);				\
> >+   _label->jump = ((kind >> 1) & 1);					\
>                        ^^^^ typo missing _
> >+   _label->call = (kind & 1);					 \
>                       ^^^^ typo missing _
> >+} while (0)

Blargh.  Corrected in my copy.  Thanks.

zw


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