I am reading on CPP macro expansion and wanted to understand expansion when the (optional) token-string is not provided. I found gcc v4.8.4 does this:
$ cat zz.c
#define B
(B)
|B|
$ gcc -E zz.c
# 1 "zz.c"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "zz.c"
()
| |
Can anyone explain why the expansion is zero spaces in one instance and one in the other?
The C preprocessor operates on "tokens" and whenever there's a possibility of changing the meaning or ambiguity, it always adds whitespace in order to preserve the meaning.
Consider your example,
there's no ambiguity or meaning altering whether there's a space between
(
and)
added or not irrespective of the macro value ofB
.But it's not the case with
Depending on the macro
B
, this above could either be||
or|something|
. So preprocessor is forced to add a whitespace in order to keep C's lexical rules.The same behaviour can be seen with any other token that could alter the meaning. For example,
would produce
as opposed to
for the said reason.
However, this is only the preprocessor that complies to C lexical rules. GCC does have and support an old preprocessor called traditional processor which wouldn't add any extra whitespaces. For example, if you call preprocessor in traditional mode:
then
produce (without the whitespace)