On 8 January 2012 14:02, Xin Tong <xerox.time.t...@gmail.com> wrote: > s->nb_temps = s->nb_globals; in tcg_func_start. > > Is it still possible to allocated TCGTemp globals after tcg_func_start > is called.
No. From tcg/README: # A TCG "global" is a variable which is live in all the functions # (equivalent of a C global variable). They are defined before the # functions defined. -- PMM