cpp and ##: spurious blank causes "error: exponent has no digits"

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi, consider the following C code that tries to compose literals that use gcc's P extension:

#define VAL1(X, SUFFIX) \
    X##SUFFIX

int x1 = VAL1 (0x123, P-2u);

#define VAL2(X, SUFFIX) \
    X##P-2##SUFFIX

int x2 = VAL2 (0x123, u);

Compiling this runs into "error: exponent has no digits" error because
cpp introduces a bad blank before the minus (same with +).

cpp expands the code to (with -P -g3):

#define VAL1(X,SUFFIX) X ##SUFFIX
int x1 = 0x123P -2u;
#define VAL2(X,SUFFIX) X ##P-2 ##SUFFIX
int x2 = 0x123P -2u;

Is this a bug or a feature?


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux