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 401f039 commit f1ab90aCopy full SHA for f1ab90a
llvm/lib/IR/Metadata.cpp
@@ -1566,7 +1566,7 @@ void Instruction::updateDIAssignIDMapping(DIAssignID *ID) {
1566
"Expect existing attachment to be mapped");
1567
1568
auto &InstVec = InstrsIt->second;
1569
- auto *InstIt = std::find(InstVec.begin(), InstVec.end(), this);
+ auto *InstIt = llvm::find(InstVec, this);
1570
assert(InstIt != InstVec.end() &&
1571
"Expect instruction to be mapped to attachment");
1572
// The vector contains a ptr to this. If this is the only element in the
0 commit comments