summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2005-08-26 09:25:54 +0000
committerJim Laskey <jlaskey@mac.com>2005-08-26 09:25:54 +0000
commit22b7dfa6452a6ca9b3d3107a93f01222d24922b1 (patch)
treede8233b3aae60f11cffc3023dcc4523d226b6baf /docs
parenta2860651e8567fe8d8af3968955845b0755f50d0 (diff)
downloadllvm-22b7dfa6452a6ca9b3d3107a93f01222d24922b1.tar.gz
llvm-22b7dfa6452a6ca9b3d3107a93f01222d24922b1.tar.bz2
llvm-22b7dfa6452a6ca9b3d3107a93f01222d24922b1.tar.xz
Changed unsigned long to unsigned.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CommandLine.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index a1fd340efe..3140b98ddf 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -701,8 +701,8 @@ checking we have to do.</p>
<div class="doc_text">
<p>Instead of collecting sets of options in a list, it is also possible to
-gather information for enum values in a bit vector. The represention used by
-the <a href="#bits"><tt>cl::bits</tt></a> class is an <tt>unsigned long</tt>
+gather information for enum values in a <b>bit vector</b>. The represention used by
+the <a href="#bits"><tt>cl::bits</tt></a> class is an <tt>unsigned</tt>
integer. An enum value is represented by a 0/1 in the enum's ordinal value bit
position. 1 indicating that the enum was specified, 0 otherwise. As each
specified value is parsed, the resulting enum's bit is set in the option's bit
@@ -741,13 +741,13 @@ the first are discarded.</p>
<tt>cl::bits::getBits</tt> function:</p>
<div class="doc_code"><pre>
- unsigned long bits = OptimizationBits.getBits();
+ unsigned bits = OptimizationBits.getBits();
</pre></div>
<p>Finally, if external storage is used, then the location specified must be of
-type <tt>unsigned long</tt>. In all other ways a <a
+<b>type</b> <tt>unsigned</tt>. In all other ways a <a
href="#bits"><tt>cl::bits</tt></a> option is morally equivalent to a <a
-href="#list"> <tt>cl::list</tt></a> option</p>
+href="#list"> <tt>cl::list</tt></a> option.</p>
</div>
@@ -1588,7 +1588,7 @@ can take up to three arguments:</p>
<p>This class works the exact same as the <a
href="#cl::opt"><tt>cl::lists</tt></a> class, except that the second argument
-must be of <b>type</b> <tt>unsigned long</tt> if external storage is used.</p>
+must be of <b>type</b> <tt>unsigned</tt> if external storage is used.</p>
</div>