diff options
author | Dan Gohman <gohman@apple.com> | 2008-03-07 22:24:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-03-07 22:24:41 +0000 |
commit | 4e35595368f9b62ffe0ef9aee57dd003a884a3f2 (patch) | |
tree | 92e48ed73d13ab5f089b35a3bbba34c90f6c5e0a | |
parent | b009d220aa54422d115a325b31b0491e93935533 (diff) |
There is no killUse.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48034 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 2654b18d3d..0e9d2f1c73 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -163,7 +163,7 @@ public: /// to check for specific values. unsigned getNumUses() const; - /// addUse/killUse - These two methods should only be used by the Use class. + /// addUse - This method should only be used by the Use class. /// void addUse(Use &U) { U.addToList(&UseList); } |