From a5fbf27bc85018b568433bf4b61aa42a2ab025c0 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Wed, 19 Aug 2009 17:40:05 +0000 Subject: [PATCH] BasicBlock::getContext can no longer return a NULL so update the doc. llvm-svn: 79432 --- llvm/include/llvm/BasicBlock.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/include/llvm/BasicBlock.h b/llvm/include/llvm/BasicBlock.h index 9138d28c6805..3ba4e360f712 100644 --- a/llvm/include/llvm/BasicBlock.h +++ b/llvm/include/llvm/BasicBlock.h @@ -86,8 +86,7 @@ private: explicit BasicBlock(LLVMContext &C, const Twine &Name = "", Function *Parent = 0, BasicBlock *InsertBefore = 0); public: - /// getContext - Get the context in which this basic block lives, - /// or null if it is not currently attached to a function. + /// getContext - Get the context in which this basic block lives. LLVMContext &getContext() const; /// Instruction iterators...