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

Chris Lattner lattner at cs.uiuc.edu
Mon Aug 22 09:11:58 PDT 2005



Changes in directory llvm/docs:

CommandLine.html updated: 1.33 -> 1.34
---
Log message:

Make the example a bit easier to understand, suggested by Jim.


---
Diffs of the changes:  (+3 -2)

 CommandLine.html |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Index: llvm/docs/CommandLine.html
diff -u llvm/docs/CommandLine.html:1.33 llvm/docs/CommandLine.html:1.34
--- llvm/docs/CommandLine.html:1.33	Tue May 10 17:05:27 2005
+++ llvm/docs/CommandLine.html	Mon Aug 22 11:11:46 2005
@@ -1714,7 +1714,7 @@
 
   <b>while</b> (1) {
     <b>switch</b> (*End++) {
-    <b>case</b> 0: <b>return</b> false;   <i>// No error</i>
+    <b>case</b> 0: break;          <i>// No error</i>
     <b>case</b> 'i':               <i>// Ignore the 'i' in KiB if people use that</i>
     <b>case</b> 'b': <b>case</b> 'B':     <i>// Ignore B suffix</i>
       <b>break</b>;
@@ -1728,6 +1728,7 @@
       <b>return</b> O.error(": '" + Arg + "' value invalid for file size argument!");
     }
   }
+  <b>return</b> false;
 }
 </pre></div>
 
@@ -1814,7 +1815,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2005/05/10 22:05:27 $
+  Last modified: $Date: 2005/08/22 16:11:46 $
 </address>
 
 </body>






More information about the llvm-commits mailing list