diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2002-09-18 02:21:57 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2002-09-18 02:21:57 +0000 |
commit | c4f5bb0fdea2705955675ace144b9599b8dd1645 (patch) | |
tree | 0b30d469aa557851e2f88ac49402b6d1ae55548c /docs/ProgrammersManual.html | |
parent | 0a4aa5a026f30da4476cc6af8e05ddd6e03c6273 (diff) |
Fixed grammar (User's -> Users).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3804 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r-- | docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 93ee0f3f26..421f3021ed 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -830,7 +830,7 @@ be aware of the <a href="#nameWarning">precaution above</a>.<p> <li><tt>void replaceAllUsesWith(Value *V)</tt><p> This method traverses the use list of a <tt>Value</tt> changing all <a -href="#User"><tt>User</tt>'s</a> of the current value to refer to "<tt>V</tt>" +href="#User"><tt>User</tt>s</a> of the current value to refer to "<tt>V</tt>" instead. For example, if you detect that an instruction always produces a constant value (for example through constant folding), you can replace all uses of the instruction with the constant like this:<p> |