From 790fb928088f6eb6b07cbf0ffbccb387a931902c Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Sun, 31 Dec 2006 03:44:08 +0000 Subject: [PATCH] Typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32774 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Stacker.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Stacker.html b/docs/Stacker.html index 8bdf68ea6b0..51446edfca8 100644 --- a/docs/Stacker.html +++ b/docs/Stacker.html @@ -198,7 +198,7 @@ should be constructed. In general, here's what I learned:
  • Create your blocks early. 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.
  • Terminate your blocks early. This just reduces the chances that you forget to terminate your blocks which is required (go