| Index: src/IceOperand.h | 
| diff --git a/src/IceOperand.h b/src/IceOperand.h | 
| index 94bc8abe9e44c1bdd7e43f50fafbe8d9eddf00bd..3718aeed52a6429e66773383a3dad966306904ee 100644 | 
| --- a/src/IceOperand.h | 
| +++ b/src/IceOperand.h | 
| @@ -545,8 +545,8 @@ class Variable64On32 : public Variable { | 
|  | 
| public: | 
| static Variable64On32 *create(Cfg *Func, Type Ty, SizeT Index) { | 
| -    return new (Func->allocate<Variable64On32>()) Variable64On32( | 
| -        kVariable64On32, Ty, Index); | 
| +    return new (Func->allocate<Variable64On32>()) | 
| +        Variable64On32(kVariable64On32, Ty, Index); | 
| } | 
|  | 
| void setName(Cfg *Func, const IceString &NewName) override { | 
| @@ -591,8 +591,7 @@ public: | 
| } | 
|  | 
| protected: | 
| -  Variable64On32(OperandKind K, Type Ty, SizeT Index) | 
| -      : Variable(K, Ty, Index) { | 
| +  Variable64On32(OperandKind K, Type Ty, SizeT Index) : Variable(K, Ty, Index) { | 
| assert(typeWidthInBytes(Ty) == 8); | 
| } | 
|  | 
|  |