diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-10-12 13:37:29 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-10-12 13:37:29 +0000 |
commit | 7630f105a1958b1ec4f8b8d14b389745f937291d (patch) | |
tree | 647a6547cbf64db5fe70b6874f99ab64a56ee60b /llvm | |
parent | e4ab8eacf70867c09109a786e1fa5877e5997a57 (diff) | |
download | bcm5719-llvm-7630f105a1958b1ec4f8b8d14b389745f937291d.tar.gz bcm5719-llvm-7630f105a1958b1ec4f8b8d14b389745f937291d.zip |
Fix typo, patch from Timo Juhani Lindfors.
llvm-svn: 83848
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/ProgrammersManual.html | 2 | ||||
-rw-r--r-- | llvm/docs/WritingAnLLVMPass.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 4e97bc02f20..4af64395287 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -3543,7 +3543,7 @@ Superclasses: <a href="#GlobalValue"><tt>GlobalValue</tt></a>, <a href="#Value"><tt>Value</tt></a></p> <p>The <tt>Function</tt> class represents a single procedure in LLVM. It is -actually one of the more complex classes in the LLVM heirarchy because it must +actually one of the more complex classes in the LLVM hierarchy because it must keep track of a large amount of data. The <tt>Function</tt> class keeps track of a list of <a href="#BasicBlock"><tt>BasicBlock</tt></a>s, a list of formal <a href="#Argument"><tt>Argument</tt></a>s, and a diff --git a/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index f715a961a0f..c9a7edbde86 100644 --- a/llvm/docs/WritingAnLLVMPass.html +++ b/llvm/docs/WritingAnLLVMPass.html @@ -179,7 +179,7 @@ source tree in the <tt>lib/Transforms/Hello</tt> directory.</p> <div class="doc_code"><pre> # Makefile for hello pass -# Path to top level of LLVM heirarchy +# Path to top level of LLVM hierarchy LEVEL = ../../.. # Name of the library to build |