summaryrefslogtreecommitdiff
path: root/include/llvm/BasicBlock.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-04-10 23:18:04 +0000
committerBill Wendling <isanbard@gmail.com>2011-04-10 23:18:04 +0000
commit5d7a5a4f53304869ae5b76771ab67213447b65a5 (patch)
tree7a3b9ece646fc6ee260ab1467a1e693d9128b5a1 /include/llvm/BasicBlock.h
parentc6cf19731504e7f922d1409ac118c59f5ab8e3c2 (diff)
downloadllvm-5d7a5a4f53304869ae5b76771ab67213447b65a5.tar.gz
llvm-5d7a5a4f53304869ae5b76771ab67213447b65a5.tar.bz2
llvm-5d7a5a4f53304869ae5b76771ab67213447b65a5.tar.xz
Revert r129235 pending a vetting of the EH rewrite.
--- Reverse-merging r129235 into '.': D test/Feature/bb_attrs.ll U include/llvm/BasicBlock.h U include/llvm/Bitcode/LLVMBitCodes.h U lib/VMCore/AsmWriter.cpp U lib/VMCore/BasicBlock.cpp U lib/AsmParser/LLParser.cpp U lib/AsmParser/LLLexer.cpp U lib/AsmParser/LLToken.h U lib/Bitcode/Reader/BitcodeReader.cpp U lib/Bitcode/Writer/BitcodeWriter.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129259 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r--include/llvm/BasicBlock.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h
index 3336b3610d..7e7c9e7694 100644
--- a/include/llvm/BasicBlock.h
+++ b/include/llvm/BasicBlock.h
@@ -74,7 +74,6 @@ public:
private:
InstListType InstList;
Function *Parent;
- bool IsLandingPad;
void setParent(Function *parent);
friend class SymbolTableListTraits<BasicBlock, Function>;
@@ -139,11 +138,6 @@ public:
return const_cast<BasicBlock*>(this)->getFirstNonPHIOrDbg();
}
- /// isLandingPad - True if this basic block is a landing pad for exception
- /// handling.
- bool isLandingPad() const { return IsLandingPad; }
- void setIsLandingPad(bool Val = true) { IsLandingPad = Val; }
-
/// removeFromParent - This method unlinks 'this' from the containing
/// function, but does not delete it.
///