This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: cgraph_nodes_queue replacement?


> Hello Everyone,
> 	I just recently pulled the trunk and I noticed that cgraph_nodes_queue is taken out. Is it renamed (or #defined) to something else? I am using it for some code in my Cilk plus branch. So what is the appropriate replacement for the following code? 
> 
> 	for (n = cgraph_nodes_queue; n ; n = n->next_needed)
> 
> Any help is greatly appreciated!
You want
 FOR_EACH_FUNCION (node) or one of the alternatives.

Honza
> 
> Thanks,
> 
> Balaji V. Iyer.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]