ARCSequenceOpts: Remove unused args in several functions

This commit is contained in:
Meghana Gupta
2020-08-29 00:13:53 -07:00
parent fe6d456eec
commit ce669ca63f
4 changed files with 47 additions and 89 deletions

View File

@@ -108,7 +108,7 @@ bool ARCSequenceDataflowEvaluator::processBBTopDown(ARCBBState &BBState) {
if (Op && OtherState->first == Op)
continue;
OtherState->second.updateForSameLoopInst(&I, SetFactory, AA);
OtherState->second.updateForSameLoopInst(&I, AA);
}
}
@@ -260,7 +260,7 @@ bool ARCSequenceDataflowEvaluator::processBBBottomUp(
if (Op && OtherState->first == Op)
continue;
OtherState->second.updateForSameLoopInst(&I, SetFactory, AA);
OtherState->second.updateForSameLoopInst(&I, AA);
}
}