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

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: Minor 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..84dd6dae2af0ef20e6358d47124a560df8ee92ff 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -20,12 +20,10 @@
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) {
+ if (A.Offset != B.Offset || A.SuppressMangling != B.SuppressMangling)
+ return false;
+ return A.Name == B.Name;
}
bool operator<(const RegWeight &A, const RegWeight &B) {
« src/IceGlobalContext.cpp ('K') | « src/IceOperand.h ('k') | src/IceTargetLoweringX8632.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698