[llvm-commits] [llvm] r83848 - in /llvm/trunk/docs: ProgrammersManual.html WritingAnLLVMPass.html
Torok Edwin
edwintorok at gmail.com
Mon Oct 12 06:37:30 PDT 2009
Author: edwin
Date: Mon Oct 12 08:37:29 2009
New Revision: 83848
URL: http://llvm.org/viewvc/llvm-project?rev=83848&view=rev
Log:
Fix typo, patch from Timo Juhani Lindfors.
Modified:
llvm/trunk/docs/ProgrammersManual.html
llvm/trunk/docs/WritingAnLLVMPass.html
Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=83848&r1=83847&r2=83848&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Mon Oct 12 08:37:29 2009
@@ -3543,7 +3543,7 @@
<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
Modified: llvm/trunk/docs/WritingAnLLVMPass.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.html?rev=83848&r1=83847&r2=83848&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.html (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.html Mon Oct 12 08:37:29 2009
@@ -179,7 +179,7 @@
<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
More information about the llvm-commits
mailing list