| Index: src/IceTargetLoweringX8632.h
|
| diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h
|
| index 4c2c527042dcffacf68e71f209c6eeea64acf7c3..36ba4dc2589a069ae043b95ced7cd421e1547ff7 100644
|
| --- a/src/IceTargetLoweringX8632.h
|
| +++ b/src/IceTargetLoweringX8632.h
|
| @@ -46,6 +46,7 @@ public:
|
| return (typeWidthInBytes(Ty) + 3) & ~3;
|
| }
|
| virtual void emitVariable(const Variable *Var, const Cfg *Func) const;
|
| + virtual void lowerArguments();
|
| virtual void addProlog(CfgNode *Node);
|
| virtual void addEpilog(CfgNode *Node);
|
| virtual void emitConstants() const;
|
| @@ -56,8 +57,8 @@ public:
|
| // function calls using the 32-bit push instruction (though the
|
| // latter could be done by directly writing to the stack).
|
| void split64(Variable *Var);
|
| - void setArgOffsetAndCopy(Variable *Arg, Variable *FramePtr,
|
| - size_t BasicFrameOffset, size_t &InArgsSizeBytes);
|
| + void finishArgumentLowering(Variable *Arg, Variable *FramePtr,
|
| + size_t BasicFrameOffset, size_t &InArgsSizeBytes);
|
| Operand *loOperand(Operand *Operand);
|
| Operand *hiOperand(Operand *Operand);
|
|
|
|
|