|
From: Cyrill G. <gor...@gm...> - 2010-10-04 17:35:47
|
On Mon, Oct 04, 2010 at 08:50:53PM +0400, Cyrill Gorcunov wrote:
...
> tokens TOK_NUM and TOK_ID. If I forbid this rule I would not be
> able to handle case like
>
Not really true, this case is different. But in actually I think
you simply can't have say
%define 1a 0x1a
%define TOK_ID a
%define TOK_NUM 1
%macro m 2
mov eax, %1%2 ; even paste_tokens slip this %1%2 into
; new 1a, there are no 1a id in real since
; we can't define it this way starting from
; number in first place
%endmacro
m TOK_NUM, TOK_ID
Cyrill
|