[llvm-commits] CVS: llvm/docs/CommandLine.html
Chris Lattner
lattner at cs.uiuc.edu
Mon Aug 22 09:24:37 PDT 2005
Changes in directory llvm/docs:
CommandLine.html updated: 1.34 -> 1.35
---
Log message:
Revert my patch which changed the code to not work.
---
Diffs of the changes: (+2 -3)
CommandLine.html | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Index: llvm/docs/CommandLine.html
diff -u llvm/docs/CommandLine.html:1.34 llvm/docs/CommandLine.html:1.35
--- llvm/docs/CommandLine.html:1.34 Mon Aug 22 11:11:46 2005
+++ llvm/docs/CommandLine.html Mon Aug 22 11:24:25 2005
@@ -1714,7 +1714,7 @@
<b>while</b> (1) {
<b>switch</b> (*End++) {
- <b>case</b> 0: break; <i>// No error</i>
+ <b>case</b> 0: <b>return</b> false; <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,7 +1728,6 @@
<b>return</b> O.error(": '" + Arg + "' value invalid for file size argument!");
}
}
- <b>return</b> false;
}
</pre></div>
@@ -1815,7 +1814,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/08/22 16:11:46 $
+ Last modified: $Date: 2005/08/22 16:24:25 $
</address>
</body>
More information about the llvm-commits
mailing list