mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-28 21:18:16 +00:00
Constify parameters in SelectionDAG methods. NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242210 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -140,7 +140,7 @@ public:
|
||||
}
|
||||
|
||||
// Return true if this node is an operand of N.
|
||||
bool isOperandOf(SDNode *N) const;
|
||||
bool isOperandOf(const SDNode *N) const;
|
||||
|
||||
/// Return the ValueType of the referenced return value.
|
||||
inline EVT getValueType() const;
|
||||
@@ -532,10 +532,10 @@ public:
|
||||
bool hasAnyUseOfValue(unsigned Value) const;
|
||||
|
||||
/// Return true if this node is the only use of N.
|
||||
bool isOnlyUserOf(SDNode *N) const;
|
||||
bool isOnlyUserOf(const SDNode *N) const;
|
||||
|
||||
/// Return true if this node is an operand of N.
|
||||
bool isOperandOf(SDNode *N) const;
|
||||
bool isOperandOf(const SDNode *N) const;
|
||||
|
||||
/// Return true if this node is a predecessor of N.
|
||||
/// NOTE: Implemented on top of hasPredecessor and every bit as
|
||||
|
||||
Reference in New Issue
Block a user