| 153 | } |
| 154 | |
| 155 | bool FilePathAnalyzer::updateArgFlow(Argument &A) { |
| 156 | if (!Report.has(A)) |
| 157 | return false; |
| 158 | |
| 159 | auto &AF = getOrCreateArgFlow(A); |
| 160 | if (Report.get(A)) |
| 161 | AF.setFilePathString(); |
| 162 | updateFieldFlow(AF); |
| 163 | return true; |
| 164 | } |
| 165 | |
| 166 | void FilePathAnalyzer::updateFieldFlow(ArgFlow &AF, std::vector<int> Indices) { |
| 167 | auto &A = AF.getLLVMArg(); |
nothing calls this directly
no test coverage detected