diff --git a/include/llvm/CodeGen/FunctionLiveVarInfo.h b/include/llvm/CodeGen/FunctionLiveVarInfo.h index 0bdd7f92b9c..9120d8eb751 100644 --- a/include/llvm/CodeGen/FunctionLiveVarInfo.h +++ b/include/llvm/CodeGen/FunctionLiveVarInfo.h @@ -110,13 +110,17 @@ public: // gets InSet of a BB const ValueSet &getInSetOfBB(const BasicBlock *BB) const; - // gets the Live var set BEFORE an instruction + // gets the Live var set BEFORE an instruction. + // if BB is specified and the live var set has not yet been computed, + // it will be computed on demand. const ValueSet &getLiveVarSetBeforeMInst(const MachineInstr *MI, - const BasicBlock *BB); + const BasicBlock *BB = 0); // gets the Live var set AFTER an instruction + // if BB is specified and the live var set has not yet been computed, + // it will be computed on demand. const ValueSet &getLiveVarSetAfterMInst(const MachineInstr *MI, - const BasicBlock *BB); + const BasicBlock *BB = 0); }; #endif