mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Changed per review comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37355 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
95ef406e0f
commit
44008c5918
@ -420,9 +420,8 @@ static void FixTail(MachineBasicBlock* CurMBB, MachineBasicBlock *SuccBB,
|
||||
TII->InsertBranch(*CurMBB, SuccBB, NULL, std::vector<MachineOperand>());
|
||||
}
|
||||
|
||||
static bool MergeCompare(std::pair<unsigned,MachineBasicBlock*> p,
|
||||
std::pair<unsigned,MachineBasicBlock*> q) {
|
||||
|
||||
static bool MergeCompare(const std::pair<unsigned,MachineBasicBlock*> &p,
|
||||
const std::pair<unsigned,MachineBasicBlock*> &q) {
|
||||
if (p.first < q.first)
|
||||
return true;
|
||||
else if (p.first > q.first)
|
||||
|
Loading…
x
Reference in New Issue
Block a user