diff options
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2009-08-19 17:40:05 +0000 |
---|---|---|
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2009-08-19 17:40:05 +0000 |
commit | d46735efc3929f36a6737b2a4b410b62f9a2291f (patch) | |
tree | 3b48905681748eaea8d1efb3c9705eacc05782d0 /include/llvm | |
parent | ed1bd8a8ef79a85223e9f2d9088f9c5aba61032f (diff) | |
download | external_llvm-d46735efc3929f36a6737b2a4b410b62f9a2291f.zip external_llvm-d46735efc3929f36a6737b2a4b410b62f9a2291f.tar.gz external_llvm-d46735efc3929f36a6737b2a4b410b62f9a2291f.tar.bz2 |
BasicBlock::getContext can no longer return a NULL so update the doc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/BasicBlock.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 9138d28..3ba4e36 100644 --- a/include/llvm/BasicBlock.h +++ b/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... |