File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
unittests/PhasarLLVM/DataFlow/IfdsIde/Problems Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ class IDEFeatureTaintAnalysisTest : public ::testing::Test {
130
130
131
131
IDESolver IIASolver (IIAProblem, &HA->getICFG ());
132
132
// IterativeIDESolver IIASolver(&IIAProblem, &HA->getICFG());
133
- IIASolver.solve ();
133
+ auto Results = IIASolver.solve ();
134
134
135
135
// do the comparison
136
136
for (const auto &[InstLoc, VarName, ExpectedVal] : GroundTruth) {
@@ -167,10 +167,10 @@ class IDEFeatureTaintAnalysisTest : public ::testing::Test {
167
167
}
168
168
169
169
// See vara::PhasarTaintAnalysis::taintsForInst
170
- [[nodiscard]] inline TaintSetT
171
- taintsForInst ( const llvm::Instruction *Inst,
172
- SolverResults <const llvm::Instruction *, const llvm::Value *,
173
- IDEFeatureTaintEdgeFact> SR) {
170
+ [[nodiscard]] inline TaintSetT taintsForInst (
171
+ const llvm::Instruction *Inst,
172
+ GenericSolverResults <const llvm::Instruction *, const llvm::Value *,
173
+ IDEFeatureTaintEdgeFact> SR) {
174
174
175
175
if (const auto *Ret = llvm::dyn_cast<llvm::ReturnInst>(Inst)) {
176
176
if (Ret->getNumOperands () == 0 ) {
You can’t perform that action at this time.
0 commit comments