| 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)
 | 
| 
 |