Index: src/IceTargetLoweringARM32.h |
diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h |
index f99655d455c21d87ee0e92bc1e4310693494a32d..996b28350542b5cd4e49a3d45f47b1934ff8e13c 100644 |
--- a/src/IceTargetLoweringARM32.h |
+++ b/src/IceTargetLoweringARM32.h |
@@ -85,6 +85,10 @@ public: |
return (typeWidthInBytes(Ty) + 3) & ~3; |
} |
+ bool shouldSplitToVariable64On32(Type Ty) const override { |
+ return Ty == IceType_i64; |
+ } |
+ |
// TODO(ascull): what size is best for ARM? |
SizeT getMinJumpTableSize() const override { return 3; } |
void emitJumpTable(const Cfg *Func, |
@@ -103,9 +107,6 @@ public: |
void addProlog(CfgNode *Node) override; |
void addEpilog(CfgNode *Node) override; |
- /// Ensure that a 64-bit Variable has been split into 2 32-bit Variables, |
- /// creating them if necessary. This is needed for all I64 operations. |
- void split64(Variable *Var); |
Operand *loOperand(Operand *Operand); |
Operand *hiOperand(Operand *Operand); |
void finishArgumentLowering(Variable *Arg, Variable *FramePtr, |