| Index: src/IceInst.h
|
| diff --git a/src/IceInst.h b/src/IceInst.h
|
| index cf507e67cc0ef83bf5c3cbe8c34ac3a2c8d81625..6db49710d8a9de84e3d5c7e26859edb1cc757a1b 100644
|
| --- a/src/IceInst.h
|
| +++ b/src/IceInst.h
|
| @@ -92,13 +92,7 @@ public:
|
| return NodeList();
|
| }
|
|
|
| - // Updates the status of the Variables contained within the
|
| - // instruction. In particular, it marks where the Dest variable is
|
| - // first assigned, and it tracks whether variables are live across
|
| - // basic blocks, i.e. used in a different block from their definition.
|
| - void updateVars(CfgNode *Node);
|
| -
|
| - void livenessLightweight(llvm::BitVector &Live);
|
| + void livenessLightweight(Cfg *Func, llvm::BitVector &Live);
|
| void liveness(InstNumberT InstNumber, llvm::BitVector &Live,
|
| Liveness *Liveness, const CfgNode *Node);
|
|
|
| @@ -520,7 +514,7 @@ public:
|
| Operand *getOperandForTarget(CfgNode *Target) const;
|
| void livenessPhiOperand(llvm::BitVector &Live, CfgNode *Target,
|
| Liveness *Liveness);
|
| - Inst *lower(Cfg *Func, CfgNode *Node);
|
| + Inst *lower(Cfg *Func);
|
| virtual void dump(const Cfg *Func) const;
|
| static bool classof(const Inst *Inst) { return Inst->getKind() == Phi; }
|
|
|
|
|