Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: src/IceOperand.cpp

Issue 737513008: Subzero: Simplify the constant pools. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: More cleanup Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698