> You have to schedule your IPA pass at a point where the > whole > program is in SSA form, which is during the regular IPA > passes > at earlierst. > > Richard. >
It does not work :( I put my pass after all the ipa-passes and right before the optimization-passes. My problem occurs when I try to process every function at once using "for(node=cgraph_nodes;node;node=node->next) ..." Other ideas? Thank you!