From lattner at cs.uiuc.edu Mon Aug 22 11:11:58 2005
From: lattner at cs.uiuc.edu (Chris Lattner)
Date: Mon, 22 Aug 2005 11:11:58 -0500
Subject: [llvm-commits] CVS: llvm/docs/CommandLine.html
Message-ID: <200508221611.LAA19895@zion.cs.uiuc.edu>
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 @@
while (1) {
switch (*End++) {
- case 0: return false; // No error
+ case 0: break; // No error
case 'i': // Ignore the 'i' in KiB if people use that
case 'b': case 'B': // Ignore B suffix
break;
@@ -1728,6 +1728,7 @@
return O.error(": '" + Arg + "' value invalid for file size argument!");
}
}
+ return false;
}
@@ -1814,7 +1815,7 @@
Chris Lattner
LLVM Compiler Infrastructure
- Last modified: $Date: 2005/05/10 22:05:27 $
+ Last modified: $Date: 2005/08/22 16:11:46 $