[llvm-commits] CVS: llvm/lib/CodeGen/BranchFolding.cpp
Dale Johannesen
dalej at apple.com
Tue May 29 17:32:30 PDT 2007
Changes in directory llvm/lib/CodeGen:
BranchFolding.cpp updated: 1.59 -> 1.60
---
Log message:
Changed per review comment.
---
Diffs of the changes: (+2 -3)
BranchFolding.cpp | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Index: llvm/lib/CodeGen/BranchFolding.cpp
diff -u llvm/lib/CodeGen/BranchFolding.cpp:1.59 llvm/lib/CodeGen/BranchFolding.cpp:1.60
--- llvm/lib/CodeGen/BranchFolding.cpp:1.59 Tue May 29 18:47:50 2007
+++ llvm/lib/CodeGen/BranchFolding.cpp Tue May 29 19:32:01 2007
@@ -420,9 +420,8 @@
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)
More information about the llvm-commits
mailing list