aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-06-25 16:05:06 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-06-25 16:05:06 +0000
commit8411475105e16b47a167f71071a26308b7ca5042 (patch)
tree611ae8e7d5032255f540e67df1853023fb9ec183
parent2bf183c092138e426c7f66bb072d8e0f7de36648 (diff)
Grammar and punctuation fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14409 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 729dcdf118..acc6a3bbd5 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -831,16 +831,16 @@ table is not allowed to contain duplicate constant entries.</p>
<p>The <tt>switch</tt> instruction specifies a table of values and
destinations. When the '<tt>switch</tt>' instruction is executed, this
-table is searched for the given value. If the value is found, the
-corresponding destination is branched to, otherwise the default value
-it transfered to.</p>
+table is searched for the given value. If the value is found, control flow is
+transfered to the corresponding destination; otherwise, control flow is
+transfered to the default destination.</p>
<h5>Implementation:</h5>
<p>Depending on properties of the target machine and the particular
<tt>switch</tt> instruction, this instruction may be code generated in different
-ways, for example as a series of chained conditional branches, or with a lookup
-table.</p>
+ways. For example, it could be generated as a series of chained conditional
+branches or with a lookup table.</p>
<h5>Example:</h5>