tinycc-devel
[Top][All Lists]
Advanced

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

Re: [Tinycc-devel] tcc macro infos


From: grischka
Subject: Re: [Tinycc-devel] tcc macro infos
Date: Fri, 04 Jun 2010 19:45:15 +0200
User-agent: Thunderbird 2.0.0.23 (Windows/20090812)

Luca Costantino wrote:
i managed to print name and values of "normal" macros, but i'm
experiencing some troubles getting the names of the functions defined
as macros, i.e. i can retrieve the name of the function but i cannot
retrieve the arguments

where the hell are them stored? how can i access them?

The parameters of the function macro symbol "sym" are linked in
"sym->next". See tccpp.c:2700:
    sa = s->next;
and 2730:
    sa = sa->next;

--- grischka




reply via email to

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