mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-25 00:35:30 +00:00
As Alkis pointed out to me, I forgot to commit this... :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11159 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a5ca28cafe
commit
d1d2be3c16
@ -152,6 +152,10 @@ public:
|
||||
/// getForwardNode - This method returns the node that this node is forwarded
|
||||
/// to, if any.
|
||||
DSNode *getForwardNode() const { return ForwardNH.getNode(); }
|
||||
|
||||
/// isForwarding - Return true if this node is forwarding to another.
|
||||
bool isForwarding() const { return !ForwardNH.isNull(); }
|
||||
|
||||
void stopForwarding() {
|
||||
assert(!ForwardNH.isNull() &&
|
||||
"Node isn't forwarding, cannot stopForwarding!");
|
||||
|
@ -152,6 +152,10 @@ public:
|
||||
/// getForwardNode - This method returns the node that this node is forwarded
|
||||
/// to, if any.
|
||||
DSNode *getForwardNode() const { return ForwardNH.getNode(); }
|
||||
|
||||
/// isForwarding - Return true if this node is forwarding to another.
|
||||
bool isForwarding() const { return !ForwardNH.isNull(); }
|
||||
|
||||
void stopForwarding() {
|
||||
assert(!ForwardNH.isNull() &&
|
||||
"Node isn't forwarding, cannot stopForwarding!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user