mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
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
This commit is contained in:
parent
589f1f5a43
commit
6d013fc381
@ -108,10 +108,10 @@ public:
|
|||||||
Function *getParent() { return Parent; }
|
Function *getParent() { return Parent; }
|
||||||
|
|
||||||
/// use_back - Specialize the methods defined in Value, as we know that an
|
/// use_back - Specialize the methods defined in Value, as we know that an
|
||||||
/// BasicBlock can only be used by Instructions (specifically PHI nodes and
|
/// BasicBlock can only be used by Users (specifically PHI nodes, terminators,
|
||||||
/// terminators).
|
/// and BlockAddress's).
|
||||||
Instruction *use_back() { return cast<Instruction>(*use_begin());}
|
User *use_back() { return cast<User>(*use_begin());}
|
||||||
const Instruction *use_back() const { return cast<Instruction>(*use_begin());}
|
const User *use_back() const { return cast<User>(*use_begin());}
|
||||||
|
|
||||||
/// getTerminator() - If this is a well formed basic block, then this returns
|
/// 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
|
/// a pointer to the terminator instruction. If it is not, then you get a
|
||||||
|
Loading…
x
Reference in New Issue
Block a user