From: Chris Lattner Date: Wed, 28 Oct 2009 03:36:44 +0000 (+0000) Subject: basic blocks can now have non-instruction users. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6d013fc381db73b4e9d413e786b95db9b2fefd57;p=oota-llvm.git 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 --- diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index c7abb1490ba..95e39716f2e 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(*use_begin());} - const Instruction *use_back() const { return cast(*use_begin());} + /// BasicBlock can only be used by Users (specifically PHI nodes, terminators, + /// and BlockAddress's). + User *use_back() { return cast(*use_begin());} + const User *use_back() const { return cast(*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