X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FCommandLine.html;h=7da06e8ddbfb0a2a22524b433b77a6f91169570c;hb=79691bc1f3434f08f2014ecaa31c7213b71b0b34;hp=a1fd340efed0adc6a2ed50e2f17e097a0b919f05;hpb=260292273597d5ebb6dfca4d4619b4274282411b;p=oota-llvm.git diff --git a/docs/CommandLine.html b/docs/CommandLine.html index a1fd340efed..7da06e8ddbf 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -195,7 +195,7 @@ can do.

program:

-  #include "Support/CommandLine.h"
+  #include "llvm/Support/CommandLine.h"
 

Additionally, you need to add this as the first line of your main @@ -701,8 +701,8 @@ checking we have to do.

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 cl::bits class is an unsigned long +gather information for enum values in a bit vector. The represention used by +the cl::bits class is an unsigned 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.

cl::bits::getBits function:

-  unsigned long bits = OptimizationBits.getBits();
+  unsigned bits = OptimizationBits.getBits();
 

Finally, if external storage is used, then the location specified must be of -type unsigned long. In all other ways a type unsigned. In all other ways a cl::bits option is morally equivalent to a cl::list option

+href="#list"> cl::list option.

@@ -1588,7 +1588,7 @@ can take up to three arguments:

This class works the exact same as the cl::lists class, except that the second argument -must be of type unsigned long if external storage is used.

+must be of type unsigned if external storage is used.

@@ -1899,7 +1899,7 @@ tutorial.

src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"> Chris Lattner
- LLVM Compiler Infrastructure
+ LLVM Compiler Infrastructure
Last modified: $Date$