mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Rename isOperand() to isOperandOf() (and other similar methods). It always confuses me.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47872 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -825,8 +825,8 @@ public:
|
||||
return SDOperand(Val, R);
|
||||
}
|
||||
|
||||
// isOperand - Return true if this node is an operand of N.
|
||||
bool isOperand(SDNode *N) const;
|
||||
// isOperandOf - Return true if this node is an operand of N.
|
||||
bool isOperandOf(SDNode *N) const;
|
||||
|
||||
/// getValueType - Return the ValueType of the referenced return value.
|
||||
///
|
||||
@@ -969,19 +969,19 @@ public:
|
||||
/// value. This method ignores uses of other values defined by this operation.
|
||||
bool hasAnyUseOfValue(unsigned Value) const;
|
||||
|
||||
/// isOnlyUse - Return true if this node is the only use of N.
|
||||
/// isOnlyUseOf - Return true if this node is the only use of N.
|
||||
///
|
||||
bool isOnlyUse(SDNode *N) const;
|
||||
bool isOnlyUseOf(SDNode *N) const;
|
||||
|
||||
/// isOperand - Return true if this node is an operand of N.
|
||||
/// isOperandOf - Return true if this node is an operand of N.
|
||||
///
|
||||
bool isOperand(SDNode *N) const;
|
||||
bool isOperandOf(SDNode *N) const;
|
||||
|
||||
/// isPredecessor - Return true if this node is a predecessor of N. This node
|
||||
/// is either an operand of N or it can be reached by recursively traversing
|
||||
/// up the operands.
|
||||
/// isPredecessorOf - Return true if this node is a predecessor of N. This
|
||||
/// node is either an operand of N or it can be reached by recursively
|
||||
/// traversing up the operands.
|
||||
/// NOTE: this is an expensive method. Use it carefully.
|
||||
bool isPredecessor(SDNode *N) const;
|
||||
bool isPredecessorOf(SDNode *N) const;
|
||||
|
||||
/// getNumOperands - Return the number of values used by this operation.
|
||||
///
|
||||
|
Reference in New Issue
Block a user