mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Add new 'isComplete' method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6943 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
607411bfbb
commit
2769e6ca92
@ -248,6 +248,7 @@ public:
|
||||
bool isRead() const { return NodeType & Read; }
|
||||
|
||||
bool isIncomplete() const { return NodeType & Incomplete; }
|
||||
bool isComplete() const { return !isIncomplete(); }
|
||||
bool isDeadNode() const { return NodeType & DEAD; }
|
||||
|
||||
DSNode *setAllocaNodeMarker() { NodeType |= AllocaNode; return this; }
|
||||
|
@ -248,6 +248,7 @@ public:
|
||||
bool isRead() const { return NodeType & Read; }
|
||||
|
||||
bool isIncomplete() const { return NodeType & Incomplete; }
|
||||
bool isComplete() const { return !isIncomplete(); }
|
||||
bool isDeadNode() const { return NodeType & DEAD; }
|
||||
|
||||
DSNode *setAllocaNodeMarker() { NodeType |= AllocaNode; return this; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user