diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:24:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:24:10 +0000 |
commit | 742b1461dba565da83e952dabceb3b2a0e16685b (patch) | |
tree | b55cbd2416e62696512e7731a2c61b811378aaa1 /include/llvm/InstrTypes.h | |
parent | 11a6d824472aa9502157d7df6f36180da02cebb7 (diff) |
New ctor for invoke inst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/InstrTypes.h')
-rw-r--r-- | include/llvm/InstrTypes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/InstrTypes.h b/include/llvm/InstrTypes.h index db85a397c8..54aab32875 100644 --- a/include/llvm/InstrTypes.h +++ b/include/llvm/InstrTypes.h @@ -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... |