Displaying 1 result from an estimated 1 matches for "wrappermethod".
2013 Jul 10
1
[LLVMdev] Problem Adding New Pass to Alias Analysis Group
On 7/10/13 3:43 PM, Cristianno Martins wrote:
> Hello John,
>
> What opt command line arguments are you using?
I'm not using opt. I'm manually scheduling a pipline within a tool.
The code looks like this:
PassManager pm;
MyAlias * aa = new MyAlias();
pm.add(aa);
pm.add(new MyAliasUsingPass());
Both MyAlias and MyAliasUsingPass are now ModulePass'es. MyAlias is an
alias