aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveVariables.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-04-26 18:18:09 -0700
committerGitHub <noreply@github.com>2025-04-26 18:18:09 -0700
commit8210cdd764cb0b334f2bc205b316e94480c47c88 (patch)
tree2c8d555403767b4467bd3f6f7d070ac69872e3da /llvm/lib/CodeGen/LiveVariables.cpp
parentfda8b751bd676190251721cb4840e82dd378f3fb (diff)
downloadllvm-8210cdd764cb0b334f2bc205b316e94480c47c88.zip
llvm-8210cdd764cb0b334f2bc205b316e94480c47c88.tar.gz
llvm-8210cdd764cb0b334f2bc205b316e94480c47c88.tar.bz2
[llvm] Use llvm::replace (NFC) (#137481)
Diffstat (limited to 'llvm/lib/CodeGen/LiveVariables.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveVariables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveVariables.cpp b/llvm/lib/CodeGen/LiveVariables.cpp
index f8e058383..f0bb439 100644
--- a/llvm/lib/CodeGen/LiveVariables.cpp
+++ b/llvm/lib/CodeGen/LiveVariables.cpp
@@ -764,7 +764,7 @@ void LiveVariables::recomputeForSingleDefVirtReg(Register Reg) {
void LiveVariables::replaceKillInstruction(Register Reg, MachineInstr &OldMI,
MachineInstr &NewMI) {
VarInfo &VI = getVarInfo(Reg);
- std::replace(VI.Kills.begin(), VI.Kills.end(), &OldMI, &NewMI);
+ llvm::replace(VI.Kills, &OldMI, &NewMI);
}
/// removeVirtualRegistersKilled - Remove all killed info for the specified