diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-20 17:11:11 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-20 17:11:11 +0000 |
commit | 650c8f2a06f138d795d0188ec8276638e13f7c9d (patch) | |
tree | 2ba4539a4ad633680680072b4d44811d88488354 /llvm/lib/CodeGen | |
parent | c9e2a689054b63e2c02fddd27b1f508bd57451a3 (diff) | |
download | bcm5719-llvm-650c8f2a06f138d795d0188ec8276638e13f7c9d.tar.gz bcm5719-llvm-650c8f2a06f138d795d0188ec8276638e13f7c9d.zip |
Clean up language and grammar.
Based on a patch by jfcaron3@gmail.com!
PR19806
llvm-svn: 209216
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/ExecutionDepsFix.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/CodeGen/SplitKit.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ExecutionDepsFix.cpp b/llvm/lib/CodeGen/ExecutionDepsFix.cpp index 9fa5c1026ea..cf55b68b16f 100644 --- a/llvm/lib/CodeGen/ExecutionDepsFix.cpp +++ b/llvm/lib/CodeGen/ExecutionDepsFix.cpp @@ -405,7 +405,7 @@ void ExeDepsFix::enterBasicBlock(MachineBasicBlock *MBB) { // We have a live DomainValue from more than one predecessor. if (LiveRegs[rx].Value->isCollapsed()) { - // We are already collapsed, but predecessor is not. Force him. + // We are already collapsed, but predecessor is not. Force it. unsigned Domain = LiveRegs[rx].Value->getFirstDomain(); if (!pdv->isCollapsed() && pdv->hasDomain(Domain)) collapse(pdv, Domain); diff --git a/llvm/lib/CodeGen/SplitKit.h b/llvm/lib/CodeGen/SplitKit.h index 08bcf35350d..7048ee37631 100644 --- a/llvm/lib/CodeGen/SplitKit.h +++ b/llvm/lib/CodeGen/SplitKit.h @@ -377,7 +377,7 @@ public: SlotIndex enterIntvAfter(SlotIndex Idx); /// enterIntvAtEnd - Enter the open interval at the end of MBB. - /// Use the open interval from he inserted copy to the MBB end. + /// Use the open interval from the inserted copy to the MBB end. /// Return the beginning of the new live range. SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB); |