Displaying 1 result from an estimated 1 matches for "checkanalysi".
Did you mean:
checkanalysis
2013 Oct 08
0
[LLVMdev] LLVM Pass usable by all types of Passes
...// the manager. Remove dead passes. This is a recursive function.
void PMTopLevelManager::schedulePass(Pass *P) {
....
else if (P->getPotentialPassManagerType () >
AnalysisPass->getPotentialPassManagerType()) {
*/// INFINITE LOOP HERE. maybe because checkAnalysis is set to true
for some reasons not very clear based on the comments. *
printf("Analysis Pass Name is %s\n", AnalysisPass->getPassName());
// Schedule analysis pass that is managed by a new manager.
schedulePass(AnalysisPass);
// Recheck analysis pas...