diff options
author | Gabor Greif <ggreif@gmail.com> | 2007-07-09 12:00:59 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2007-07-09 12:00:59 +0000 |
commit | e510b3af3a76cd557bb958293f859e4861060fc2 (patch) | |
tree | 1b66c7729653e62a805f8a5b2376c60cae3dec21 /include | |
parent | 3bd6e0d9dae8b8c29fd15a52b2c5c9cbeb9d8e78 (diff) |
fix typos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38453 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/SimpleRegisterCoalescing.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/CodeGen/SimpleRegisterCoalescing.h b/include/llvm/CodeGen/SimpleRegisterCoalescing.h index 0e3d169992..4c2103c1cd 100644 --- a/include/llvm/CodeGen/SimpleRegisterCoalescing.h +++ b/include/llvm/CodeGen/SimpleRegisterCoalescing.h @@ -86,17 +86,17 @@ namespace llvm { /// joinIntervals - join compatible live intervals void joinIntervals(); - /// CopyCoallesceInMBB - Coallsece copies in the specified MBB, putting - /// copies that cannot yet be coallesced into the "TryAgain" list. - void CopyCoallesceInMBB(MachineBasicBlock *MBB, + /// CopyCoalesceInMBB - Coallesce copies in the specified MBB, putting + /// copies that cannot yet be coalesced into the "TryAgain" list. + void CopyCoalesceInMBB(MachineBasicBlock *MBB, std::vector<CopyRec> *TryAgain, bool PhysOnly = false); /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg, /// which are the src/dst of the copy instruction CopyMI. This returns true - /// if the copy was successfully coallesced away, or if it is never possible - /// to coallesce these this copy, due to register constraints. It returns - /// false if it is not currently possible to coallesce this interval, but - /// it may be possible if other things get coallesced. + /// if the copy was successfully coalesced away, or if it is never possible + /// to coalesce these this copy, due to register constraints. It returns + /// false if it is not currently possible to coalesce this interval, but + /// it may be possible if other things get coalesced. bool JoinCopy(MachineInstr *CopyMI, unsigned SrcReg, unsigned DstReg, bool PhysOnly = false); |