This is the mail archive of the gcc-help@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: problem with macro expansion in GCC


On Feb  6, 2001, Dhanabal Ekambaram <Dhanabal@Zambeel.com> wrote:

> #define XXX(N)  N.ptr

> XXX(y) gets transformed to " y.ptr" instead of "y.ptr".

That's to prevent unwanted token pasting, if XXX(y) happens to be
preceded by something that might be seem like the same token.  This
would unlikely be the case for this particular macro, but how is the
preprocessor to know that?

In any case, the extra space shouldn't be a problem for you; the
compiler will simply discard it.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

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