[llvm-commits] CVS: llvm/docs/LangRef.html

John Criswell criswell at cs.uiuc.edu
Fri Jun 25 11:06:01 PDT 2004


Changes in directory llvm/docs:

LangRef.html updated: 1.68 -> 1.69

---
Log message:

Grammar and punctuation fixes.



---
Diffs of the changes:  (+6 -6)

Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.68 llvm/docs/LangRef.html:1.69
--- llvm/docs/LangRef.html:1.68	Fri Jun 25 10:16:57 2004
+++ llvm/docs/LangRef.html	Fri Jun 25 11:05:06 2004
@@ -831,16 +831,16 @@
 
 <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>
 
@@ -2637,7 +2637,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2004/06/25 15:16:57 $
+  Last modified: $Date: 2004/06/25 16:05:06 $
 </address>
 </body>
 </html>





More information about the llvm-commits mailing list