aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Stacker.html
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2006-12-31 03:44:08 +0000
committerNick Lewycky <nicholas@mxc.ca>2006-12-31 03:44:08 +0000
commit790fb928088f6eb6b07cbf0ffbccb387a931902c (patch)
tree3237bafea6822303a0f8e80776d15a9da8a550bf /docs/Stacker.html
parent129f004ab434fd20ec6ae44be9117cdb8713f83b (diff)
downloadexternal_llvm-790fb928088f6eb6b07cbf0ffbccb387a931902c.zip
external_llvm-790fb928088f6eb6b07cbf0ffbccb387a931902c.tar.gz
external_llvm-790fb928088f6eb6b07cbf0ffbccb387a931902c.tar.bz2
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Stacker.html')
-rw-r--r--docs/Stacker.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Stacker.html b/docs/Stacker.html
index 8bdf68e..51446ed 100644
--- a/docs/Stacker.html
+++ b/docs/Stacker.html
@@ -198,7 +198,7 @@ should be constructed. In general, here's what I learned:
<li><em>Create your blocks early.</em> While writing your compiler, you
will encounter several situations where you know apriori that you will
need several blocks. For example, if-then-else, switch, while, and for
- statements in C/C++ all need multiple blocks for expression in LVVM.
+ statements in C/C++ all need multiple blocks for expression in LLVM.
The rule is, create them early.</li>
<li><em>Terminate your blocks early.</em> This just reduces the chances
that you forget to terminate your blocks which is required (go