function
| 28 | virtual bool canVisitFunction ( Function * fun ) override { return !fun->isTemplate && !fun->stub && (isEverything || fun->used); } |
| 29 | // function |
| 30 | virtual void preVisit ( Function * f ) override { |
| 31 | Visitor::preVisit(f); |
| 32 | func = f; |
| 33 | } |
| 34 | virtual FunctionPtr visit ( Function * that ) override { |
| 35 | if ( cmresVAR && !failedToCMRES ) cmresVAR->aliasCMRES = true; |
| 36 | func = nullptr; |