basic blocks can now have non-instruction users.

llvm-svn: 85365
This commit is contained in:
Chris Lattner 2009-10-28 03:36:44 +00:00
parent 1b44f10ff4
commit 1c4b03c2d7
1 changed files with 4 additions and 4 deletions

View File

@ -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