Fix subfic to match subc by default instead of sub so that it is correctly
[oota-llvm.git] / docs / CommandLine.html
index a1fd340efed0adc6a2ed50e2f17e097a0b919f05..7da06e8ddbfb0a2a22524b433b77a6f91169570c 100644 (file)
@@ -195,7 +195,7 @@ can do.</p>
 program:</p>
 
 <div class="doc_code"><pre>
-  #include "Support/CommandLine.h"
+  #include "llvm/Support/CommandLine.h"
 </pre></div>
 
 <p>Additionally, you need to add this as the first line of your main
@@ -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>
 
@@ -1899,7 +1899,7 @@ tutorial.</p>
   src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
 
   <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
-  <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
+  <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
   Last modified: $Date$
 </address>