mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
remove dead enum, make setNodeId public.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42977 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1622768794
commit
91956887f0
@ -419,13 +419,6 @@ namespace ISD {
|
|||||||
// indexed memory ops).
|
// indexed memory ops).
|
||||||
LOAD, STORE,
|
LOAD, STORE,
|
||||||
|
|
||||||
// TRUNCSTORE - This operators truncates (for integer) or rounds (for FP) a
|
|
||||||
// value and stores it to memory in one operation. This can be used for
|
|
||||||
// either integer or floating point operands. The first four operands of
|
|
||||||
// this are the same as a standard store. The fifth is the ValueType to
|
|
||||||
// store it as (which will be smaller than the source value).
|
|
||||||
TRUNCSTORE,
|
|
||||||
|
|
||||||
// DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
|
// DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
|
||||||
// to a specified boundary. This node always has two return values: a new
|
// to a specified boundary. This node always has two return values: a new
|
||||||
// stack pointer value and a chain. The first operand is the token chain,
|
// stack pointer value and a chain. The first operand is the token chain,
|
||||||
@ -950,6 +943,10 @@ public:
|
|||||||
///
|
///
|
||||||
void Profile(FoldingSetNodeID &ID);
|
void Profile(FoldingSetNodeID &ID);
|
||||||
|
|
||||||
|
void setNodeId(int Id) {
|
||||||
|
NodeId = Id;
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
friend class SelectionDAG;
|
friend class SelectionDAG;
|
||||||
|
|
||||||
@ -1018,10 +1015,6 @@ protected:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void setNodeId(int Id) {
|
|
||||||
NodeId = Id;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user