Displaying 2 results from an estimated 2 matches for "borya".
Did you mean:
borja
2012 Mar 07
3
[LLVMdev] Alias analysis result
Hello everyone,
I am trying to find the alias between a store instruction's pointer operand
and function arguments. This is the code,
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequiredTransitive<AliasAnalysis>();
AU.addPreserved<AliasAnalysis>();
}
virtual bool runOnFunction(Function &F) {
AliasAnalysis &AA =
2012 Mar 08
0
[LLVMdev] Alias analysis result
That's the reason I have defined getAnalysisUsage method. Isn't that the
right way to do it?
borya043 wrote:
>
> Hello everyone,
> I am trying to find the alias between a store instruction's pointer
> operand
> and function arguments. This is the code,
> virtual void getAnalysisUsage(AnalysisUsage &AU) const {
>
> AU.addRequiredTransitive<AliasAnalysi...