summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-18 14:58:55 +0000
committerChris Lattner <sabre@nondot.org>2004-03-18 14:58:55 +0000
commitd5fc4fcecfa87b809194398ff09247dcdb9b38a2 (patch)
treedc1d524c895832821175bf2b7fbdf125fcd603cd /docs/ProgrammersManual.html
parent43aaf66a3974acc137b765da0adb9d02087e10e4 (diff)
downloadllvm-d5fc4fcecfa87b809194398ff09247dcdb9b38a2.tar.gz
llvm-d5fc4fcecfa87b809194398ff09247dcdb9b38a2.tar.bz2
llvm-d5fc4fcecfa87b809194398ff09247dcdb9b38a2.tar.xz
Fix a minor wording bug in the manual
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12496 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 189895aec4..18b0571ae7 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -974,7 +974,8 @@ between them. For this purpose, use a <tt>std::map</tt> of pointers to the
<p>One important aspect of LLVM is that there is no distinction between an SSA
variable and the operation that produces it. Because of this, any reference to
the value produced by an instruction (or the value available as an incoming
-argument, for example) is represented as a direct pointer to the class that
+argument, for example) is represented as a direct pointer to the instance of
+the class that
represents this value. Although this may take some getting used to, it
simplifies the representation and makes it easier to manipulate.</p>