mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-23 14:25:07 +00:00
Lots of changes to make the NodeType field private to DSNode.
Add new MultiObject flag git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6793 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -137,9 +137,9 @@ public:
|
||||
/// maskNodeTypes - Apply a mask to all of the node types in the graph. This
|
||||
/// is useful for clearing out markers like Incomplete.
|
||||
///
|
||||
void maskNodeTypes(unsigned char Mask) {
|
||||
void maskNodeTypes(unsigned Mask) {
|
||||
for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
|
||||
Nodes[i]->NodeType &= Mask;
|
||||
Nodes[i]->maskNodeTypes(Mask);
|
||||
}
|
||||
void maskIncompleteMarkers() { maskNodeTypes(~DSNode::Incomplete); }
|
||||
|
||||
|
Reference in New Issue
Block a user