diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-28 03:36:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-28 03:36:44 +0000 |
commit | 1c4b03c2d7f18eccb7aedfa8920a0460d506b1e6 (patch) | |
tree | 5928c7658899773db7a642b5f4177c6ad2f930a3 /llvm | |
parent | 1b44f10ff49ef6bbe103900770f7dbbd4b09411d (diff) | |
download | bcm5719-llvm-1c4b03c2d7f18eccb7aedfa8920a0460d506b1e6.tar.gz bcm5719-llvm-1c4b03c2d7f18eccb7aedfa8920a0460d506b1e6.zip |
basic blocks can now have non-instruction users.
llvm-svn: 85365
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/BasicBlock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/BasicBlock.h b/llvm/include/llvm/BasicBlock.h index c7abb1490ba..95e39716f2e 100644 --- a/llvm/include/llvm/BasicBlock.h +++ b/llvm/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 |