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: Remove <varargs.h> support, revised


>>>>> "Zack" == Zack Weinberg <zack@codesourcery.com> writes:

 >> > -#define __va_copy(d,s)	__builtin_va_copy((d),(s))
 >> > +#define __va_copy(d,s)	__builtin_va_copy(d,s)
 >> 
 >> Incorrect removal of argument protection parenthesis.

 > Explain?  Unless I am seriously confused, argument protection
 > parentheses are never necessary when you are simply renaming a
 > function call.

In which case, why don't you do:

#define __va_copy __builtin_va_copy


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