diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2007-10-16 08:04:24 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2007-10-16 08:04:24 +0000 |
| commit | 8b0b8749875cd20fc694f7550a62ed517fe2cd9c (patch) | |
| tree | d8e6078f5223d4b34d7c98f1c0b669cdcac9b72e /include/llvm/CodeGen | |
| parent | 59e84258cb899de1f31e730cc5568386b66ccc4b (diff) | |
Code clean up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43026 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
| -rw-r--r-- | include/llvm/CodeGen/SimpleRegisterCoalescing.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SimpleRegisterCoalescing.h b/include/llvm/CodeGen/SimpleRegisterCoalescing.h index 00095dd176..93d3e1da21 100644 --- a/include/llvm/CodeGen/SimpleRegisterCoalescing.h +++ b/include/llvm/CodeGen/SimpleRegisterCoalescing.h @@ -100,7 +100,7 @@ namespace llvm { /// CopyCoalesceInMBB - Coalesce 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); + std::vector<CopyRec> &TryAgain); /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg, /// which are the src/dst of the copy instruction CopyMI. This returns true @@ -108,8 +108,7 @@ namespace llvm { /// 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); + bool JoinCopy(MachineInstr *CopyMI, unsigned SrcReg, unsigned DstReg); /// JoinIntervals - Attempt to join these two intervals. On failure, this /// returns false. Otherwise, if one of the intervals being joined is a |
