summaryrefslogtreecommitdiff
path: root/include/llvm/BasicBlock.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-28 03:36:44 +0000
committerChris Lattner <sabre@nondot.org>2009-10-28 03:36:44 +0000
commit6d013fc381db73b4e9d413e786b95db9b2fefd57 (patch)
treec7c51e4689acb6bde23e9b34e5e59cc439be210a /include/llvm/BasicBlock.h
parent589f1f5a4321eeee2856baa5c8ab1139d6e0351e (diff)
downloadllvm-6d013fc381db73b4e9d413e786b95db9b2fefd57.tar.gz
llvm-6d013fc381db73b4e9d413e786b95db9b2fefd57.tar.bz2
llvm-6d013fc381db73b4e9d413e786b95db9b2fefd57.tar.xz
basic blocks can now have non-instruction users.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85365 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r--include/llvm/BasicBlock.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h
index c7abb1490b..95e39716f2 100644
--- a/include/llvm/BasicBlock.h
+++ b/include/llvm/BasicBlock.h
@@ -108,10 +108,10 @@ public:
Function *getParent() { return Parent; }
/// use_back - Specialize the methods defined in Value, as we know that an
- /// BasicBlock can only be used by Instructions (specifically PHI nodes and
- /// terminators).
- Instruction *use_back() { return cast<Instruction>(*use_begin());}
- const Instruction *use_back() const { return cast<Instruction>(*use_begin());}
+ /// BasicBlock can only be used by Users (specifically PHI nodes, terminators,
+ /// and BlockAddress's).
+ User *use_back() { return cast<User>(*use_begin());}
+ const User *use_back() const { return cast<User>(*use_begin());}
/// getTerminator() - If this is a well formed basic block, then this returns
/// a pointer to the terminator instruction. If it is not, then you get a