Displaying 1 result from an estimated 1 matches for "analysisdriv".
Did you mean:
analysisdriver
2013 Sep 23
0
[LLVMdev] Cannot get Alias Analysis?
Hi,
I am trying to write my own command-line tool which would use alias
analysis in a CallGraphSCCPass.
Firstly, I inherit a class AnalysisDriver from CallGraphSCCPass.
Then, I implement my own runOnFunction method which tries to get alias
analysis from each function.
The code is shown as follows:
*class AnalysisDriver : public CallGraphSCCPass {*
* static char Pid;*
* PassManager &passMgr;*
* *
*public:*
* AnalysisDriver(PassMan...