tcc -E: fix pasting empty tokens
commitdd5630ff95b8dc47ab3b5ef3f167f3342da79a77
authorgrischka <grischka>
Fri, 17 Apr 2009 20:44:42 +0000 (17 22:44 +0200)
committergrischka <grischka>
Sat, 18 Apr 2009 13:08:02 +0000 (18 15:08 +0200)
tree0b8aae2895265eeb86ef298ce4444d21bec5c37e
parent0f0ed4a8bf2b6f6bdcab1a46c34c6f54005bf34e
tcc -E: fix pasting empty tokens

/* test case */
#define t(x,y,z) x ## y ## z
int j[] = { t(1,2,3), t(,4,5), t(6,,7), t(8,9,),
        t(10,,), t(,11,), t(,,12), t(,,) };

tcc -E: xpected result:
int j[] = { 123, 45, 67, 89,
 10, 11, 12, };
tcc.c