|
From: Claudio L. <c_l...@ho...> - 2005-12-12 18:37:41
|
>Please note that the "__asm" token might be inhibiting the "__asm__" token.
>At least on the mac, the order of these two tokens does seem to be
>important. When I tried switching the them around, as shown below, the fix
>didn't work.
>
> { "__asm__", token(ATTRIBUTE) },
>+ { "__asm", token(ATTRIBUTE) },
>
>Claudio.
On the other hand, there are many examples in the list that suggest that
"__asm" followed by "__asm__" should be fine:
{ "__restrict", token(Ignore) },
{ "__restrict__", token(Ignore) },
{ "__signed", token(SIGNED) },
{ "__signed__", token(SIGNED) },
etc...
Claudio.
|