| Index: src/IceTargetLoweringMIPS32.h
 | 
| diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h
 | 
| index 1ae0b28ff7595bd63e1ebfa11bff381093e238bd..a56aa421bd72b98a875a46910176f87646674a4c 100644
 | 
| --- a/src/IceTargetLoweringMIPS32.h
 | 
| +++ b/src/IceTargetLoweringMIPS32.h
 | 
| @@ -57,6 +57,10 @@ public:
 | 
|      return (typeWidthInBytes(Ty) + 3) & ~3;
 | 
|    }
 | 
|  
 | 
| +  bool shouldSplitToVariable64On32(Type Ty) const override {
 | 
| +    return Ty == IceType_i64;
 | 
| +  }
 | 
| +
 | 
|    // TODO(ascull): what is the best size of MIPS?
 | 
|    SizeT getMinJumpTableSize() const override { return 3; }
 | 
|    void emitJumpTable(const Cfg *Func,
 | 
| 
 |