Lines Matching refs:cl
35 static cl::opt<OutputFormatTy>
37 cl::desc("Specify output format"),
38 cl::values(clEnumVal(sysv, "System V format"),
41 cl::init(berkeley));
43 static cl::opt<OutputFormatTy>
44 OutputFormatShort(cl::desc("Specify output format"),
45 cl::values(clEnumValN(sysv, "A", "System V format"),
48 cl::init(berkeley));
51 static cl::opt<unsigned int>
53 cl::desc("Print size in radix. Only 8, 10, and 16 are valid"),
54 cl::init(decimal));
56 static cl::opt<RadixTy>
57 RadixShort(cl::desc("Print size in radix:"),
58 cl::values(clEnumValN(octal, "o", "Print size in octal"),
62 cl::init(decimal));
64 static cl::list<std::string>
65 InputFilenames(cl::Positional, cl::desc("<input files>"),
66 cl::ZeroOrMore);
291 cl::ParseCommandLineOptions(argc, argv, "llvm object size dumper\n");