| 107 | } |
| 108 | |
| 109 | const llvm::Argument *argument(std::string FuncName, unsigned AIdx) { |
| 110 | const auto *F = SC->getLLVMModule().getFunction(FuncName); |
| 111 | if (!F) |
| 112 | return nullptr; |
| 113 | return F->getArg(AIdx); |
| 114 | } |
| 115 | |
| 116 | bool check(std::string FuncName, unsigned BIdx, unsigned IIdx, int OIdx, |
| 117 | const InputFilter &Filter) { |
nothing calls this directly
no test coverage detected