New ctor for invoke inst

llvm-svn: 743
This commit is contained in:
Chris Lattner 2001-10-13 06:24:10 +00:00
parent 6a69c69cbf
commit 826eff1c35
1 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,9 @@ class SymTabValue;
//
class TerminatorInst : public Instruction {
public:
TerminatorInst(unsigned iType);
TerminatorInst(Instruction::TermOps iType);
TerminatorInst(const Type *Ty, Instruction::TermOps iType,
const string &Name = "");
inline ~TerminatorInst() {}
// Terminators must implement the methods required by Instruction...