diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-27 18:06:42 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-27 18:06:42 +0000 |
commit | 2a6299543fa22f389158409e897fe7099fda3812 (patch) | |
tree | be8f316a54034b7b269bda5a924f8c03dddb3a42 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 7a24cdc4ed5c357e9de4e36a39379e0aa67f6f9c (diff) |
Rename isOnlyUseOf to isOnlyUserOf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 147b9772de..9690d8d57b 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -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. /// |