On 2013-04-19 10:21 , Paulo Matos wrote:
struct GTY(()) LOOP_INFO { ... vec<loop_info> infos;
You are declaring a heap vector here. Since your structure is in GC memory, the vector must also be in GC memory. Add 'va_gc' to the arguments; and make infos a pointer (a sad side-effect of using GC):
vec<loop_info, va_gc> *infos; Diego.