diff options
author | Fangrui Song <i@maskray.me> | 2023-09-01 18:25:16 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2023-09-01 18:25:16 -0700 |
commit | 111fcb0df02db3db8bed1d5db6d911b7ce544d92 (patch) | |
tree | be1a4370f8a99e3dc03cade7c29337b8c432686b /llvm/lib/CodeGen/ReachingDefAnalysis.cpp | |
parent | 9f3e3efd98a29eb8df9e3ad43a573c9141d1ace2 (diff) | |
download | llvm-111fcb0df02db3db8bed1d5db6d911b7ce544d92.zip llvm-111fcb0df02db3db8bed1d5db6d911b7ce544d92.tar.gz llvm-111fcb0df02db3db8bed1d5db6d911b7ce544d92.tar.bz2 |
[llvm] Fix duplicate word typos. NFC
Those fixes were taken from https://reviews.llvm.org/D137338
Diffstat (limited to 'llvm/lib/CodeGen/ReachingDefAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ReachingDefAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ReachingDefAnalysis.cpp b/llvm/lib/CodeGen/ReachingDefAnalysis.cpp index 75fbc8b..61a6689 100644 --- a/llvm/lib/CodeGen/ReachingDefAnalysis.cpp +++ b/llvm/lib/CodeGen/ReachingDefAnalysis.cpp @@ -181,7 +181,7 @@ void ReachingDefAnalysis::reprocessBasicBlock(MachineBasicBlock *MBB) { MBBReachingDefs[MBBNumber][Unit].insert(Start, Def); } - // Update reaching def at end of of BB. Keep in mind that these are + // Update reaching def at end of BB. Keep in mind that these are // adjusted relative to the end of the basic block. if (MBBOutRegsInfos[MBBNumber][Unit] < Def - NumInsts) MBBOutRegsInfos[MBBNumber][Unit] = Def - NumInsts; |