I can use the interfaces of AliasAnalysis in my pass, but how to specify the underlaying pass of AliasAnalysis is DSAA?
Thanks.
Xia
I can use the interfaces of AliasAnalysis in my pass, but how to specify the underlaying pass of AliasAnalysis is DSAA?
Thanks.
Xia
opt -ds-aa -yourpass foo.bc -o out.bc
You can also use any other alias analysis this was as well.
-Chris