mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Rename isOnlyUseOf to isOnlyUserOf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7a24cdc4ed
commit
2a6299543f
@ -1199,9 +1199,9 @@ public:
|
||||
/// value. This method ignores uses of other values defined by this operation.
|
||||
bool hasAnyUseOfValue(unsigned Value) const;
|
||||
|
||||
/// isOnlyUseOf - Return true if this node is the only use of N.
|
||||
/// isOnlyUserOf - Return true if this node is the only use of N.
|
||||
///
|
||||
bool isOnlyUseOf(SDNode *N) const;
|
||||
bool isOnlyUserOf(SDNode *N) const;
|
||||
|
||||
/// isOperandOf - Return true if this node is an operand of N.
|
||||
///
|
||||
|
@ -4581,9 +4581,9 @@ bool SDNode::hasAnyUseOfValue(unsigned Value) const {
|
||||
}
|
||||
|
||||
|
||||
/// isOnlyUseOf - Return true if this node is the only use of N.
|
||||
/// isOnlyUserOf - Return true if this node is the only use of N.
|
||||
///
|
||||
bool SDNode::isOnlyUseOf(SDNode *N) const {
|
||||
bool SDNode::isOnlyUserOf(SDNode *N) const {
|
||||
bool Seen = false;
|
||||
for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
|
||||
SDNode *User = I->getUser();
|
||||
|
Loading…
x
Reference in New Issue
Block a user