From: Chris Lattner
Date: Mon, 22 Aug 2005 16:24:25 +0000 (+0000)
Subject: Revert my patch which changed the code to not work.
X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ce5fcc30ae71ee965dbde2da31e47e05b47ff248;p=oota-llvm.git
Revert my patch which changed the code to not work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22965 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index 02a5707eec7..83db04d6ed4 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -1714,7 +1714,7 @@ our example, we implement parse as:
while (1) {
switch (*End++) {
- case 0: break; // No error
+ case 0: return false; // No error
case 'i': // Ignore the 'i' in KiB if people use that
case 'b': case 'B': // Ignore B suffix
break;
@@ -1728,7 +1728,6 @@ our example, we implement parse as:
return O.error(": '" + Arg + "' value invalid for file size argument!");
}
}
- return false;
}