We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d61376 commit 65c5834Copy full SHA for 65c5834
RangeAnalysis.cpp
@@ -2326,7 +2326,7 @@ void ConstraintGraph::buildValueBranchMap(const BranchInst *br) {
2326
void ConstraintGraph::buildValueMaps(const Function& F) {
2327
for (Function::const_iterator iBB = F.begin(), eBB = F.end(); iBB != eBB;
2328
++iBB) {
2329
- const TerminatorInst* ti = iBB->getTerminator();
+ const auto ti = iBB->getTerminator();
2330
const BranchInst* br = dyn_cast<BranchInst>(ti);
2331
const SwitchInst* sw = dyn_cast<SwitchInst>(ti);
2332
0 commit comments