diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-03-22 18:46:32 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-03-22 18:46:32 +0000 |
commit | 1ca6468c0518b2c2dcd69c68b2099ae93f57f8f9 (patch) | |
tree | 3f676198c56e915804518ed99d6161c9942232ec /include | |
parent | 97e602b574b38d57384f0f877700357531a3d23e (diff) | |
download | external_llvm-1ca6468c0518b2c2dcd69c68b2099ae93f57f8f9.zip external_llvm-1ca6468c0518b2c2dcd69c68b2099ae93f57f8f9.tar.gz external_llvm-1ca6468c0518b2c2dcd69c68b2099ae93f57f8f9.tar.bz2 |
Revert r177675. This is language-specific and shouldn't be in the API.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/IR/Instructions.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/IR/Instructions.h b/include/llvm/IR/Instructions.h index 5dbca52..7e29699 100644 --- a/include/llvm/IR/Instructions.h +++ b/include/llvm/IR/Instructions.h @@ -2230,9 +2230,6 @@ public: /// to determine what type of clause this is. Value *getClause(unsigned Idx) const { return OperandList[Idx + 1]; } - /// hasCatchAll - Return 'true' if this landing pad has a catch-all. - bool hasCatchAll() const; - /// isCatch - Return 'true' if the clause and index Idx is a catch clause. bool isCatch(unsigned Idx) const { return !isa<ArrayType>(OperandList[Idx + 1]->getType()); |