Index: src/IceOperand.cpp |
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp |
index 583a6bcbbf5d0852a3336e1a3512fee5b806b358..3aaecaca514d77503a45b37d12a3e024aa802265 100644 |
--- a/src/IceOperand.cpp |
+++ b/src/IceOperand.cpp |
@@ -20,12 +20,8 @@ |
namespace Ice { |
-bool operator<(const RelocatableTuple &A, const RelocatableTuple &B) { |
- if (A.Offset != B.Offset) |
- return A.Offset < B.Offset; |
- if (A.SuppressMangling != B.SuppressMangling) |
- return A.SuppressMangling < B.SuppressMangling; |
- return A.Name < B.Name; |
+bool operator==(const RelocatableTuple &A, const RelocatableTuple &B) { |
+ return A.Offset == B.Offset && A.Name == B.Name; |
jvoung (off chromium)
2014/11/19 20:54:55
This used to check SuppressMangling as well. It do
Jim Stichnoth
2014/11/20 00:08:57
You're right, I'll update the commit message.
We
|
} |
bool operator<(const RegWeight &A, const RegWeight &B) { |