On 07/29/2011 08:36 AM, Dodji Seketeli wrote:
Looking into this a bit, it seems to me that I can access cfun->language->base (of type c_language_function) from inside either the C or C++ FE only, as the type of cfun->language -- which is of type struct language_function -- is only defined either in c-lang.h or cp-tree.h. I cannot access it from c-common.c.
I think you can use (struct c_language_function *)cfun->language. Jason