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

Unified Diff: src/IceOperand.h

Issue 2069923004: Short Circuit Evaluation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Update comment and remove redundant header Created 4 years, 6 months 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.h
diff --git a/src/IceOperand.h b/src/IceOperand.h
index fdb2a66c8a415b52ae78ae5a045692825a7ca799..f724f8f89c161aac44cc3063efa24f8e82900fc4 100644
--- a/src/IceOperand.h
+++ b/src/IceOperand.h
@@ -211,9 +211,7 @@ public:
return Operand->getKind() == K;
}
- SizeT hashValue() const override {
- return std::hash<PrimType>()(Value);
- }
+ SizeT hashValue() const override { return std::hash<PrimType>()(Value); }
virtual bool shouldBeRandomizedOrPooled() const override { return false; }
@@ -780,9 +778,7 @@ public:
return Kind >= kVariable && Kind <= kVariable_Max;
}
- SizeT hashValue() const override {
- return std::hash<SizeT>()(getIndex());
- }
+ SizeT hashValue() const override { return std::hash<SizeT>()(getIndex()); }
protected:
Variable(const Cfg *Func, OperandKind K, Type Ty, SizeT Index)

Powered by Google App Engine
This is Rietveld 408576698