tinycc-devel
[Top][All Lists]
Advanced

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

[Tinycc-devel] macro expansion problem (was: Building binutils with tcc)


From: Lionel Fourquaux
Subject: [Tinycc-devel] macro expansion problem (was: Building binutils with tcc)
Date: Mon, 5 May 2003 13:37:59 +0200

I've tried to reduce the problem to a minimal example. Here it is:

#define CONCAT2(a,b) a##b
#define XCONCAT2(a,b) CONCAT2(a,b)
#define _(x) x
void XCONCAT2(_,a) ();

This should (according to cpp) expand to:

void _a ();

and Tinycc gives an error message: macro '_' used with too few args.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]