Re: Some basic/beginner questions

2005-06-28 Thread Diego Novillo
On Tue, Jun 28, 2005 at 04:11:24PM +0200, nico wrote: > I want to get a dump of the whole data structure of my sourcecode > after (all) target independent optimization. > Dump flags and switches are dynamically enabled by the pass manager. Take a look at tree-optimize.c:init_tree_optimization_

Some basic/beginner questions

2005-06-28 Thread nico
Hi, I want to get a dump of the whole data structure of my sourcecode after (all) target independent optimization. I think the best point to do this is after 'pass_del_ssa'. But I'm not sure. At this point the internal representation of the data structure is 'generic' - is this right? I thi