diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-18 14:58:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-18 14:58:55 +0000 |
commit | 0b41ebe65ce69313c799d57b28f80a9a6b8c7074 (patch) | |
tree | c37898175388e552dabc38eda84153152533bebc /llvm/docs/ProgrammersManual.html | |
parent | 211ae0bf051fd92531f054dd89ed022a6426a748 (diff) | |
download | bcm5719-llvm-0b41ebe65ce69313c799d57b28f80a9a6b8c7074.tar.gz bcm5719-llvm-0b41ebe65ce69313c799d57b28f80a9a6b8c7074.zip |
Fix a minor wording bug in the manual
llvm-svn: 12496
Diffstat (limited to 'llvm/docs/ProgrammersManual.html')
-rw-r--r-- | llvm/docs/ProgrammersManual.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 189895aec44..18b0571ae75 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/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> |