Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / tools / llvm-rc / Opts.td
blob6d9c0e2601a46f10d711af302dc24823420f5963
1 include "llvm/Option/OptParser.td"
3 // All the switches can be preceded by either '/' or '-'.
4 // These options seem to be important for the tool
5 // and should be implemented.
7 class S<string name, string help> :
8       Separate<["/", "-"], name>, HelpText<help>;
10 class JS<string name, string help> :
11       JoinedOrSeparate<["/", "-"], name>, HelpText<help>;
13 class F<string name, string help> : Flag<["/", "-"], name>, HelpText<help>;
15 class F_nodoc<string name> : Flag<["/", "-"], name>;
16 class S_nodoc<string name> : Separate<["/", "-"], name>;
18 def fileout : JS<"FO", "Change the output file location.">;
20 def define : JS<"D", "Define a symbol for the C preprocessor.">;
21 def undef : JS<"U", "Undefine a symbol for the C preprocessor.">;
23 def lang_id : JS<"L", "Set the default language identifier.">;
24 def lang_name : S<"LN", "Set the default language name.">;
26 def includepath : JS<"I", "Add an include path.">;
27 def noinclude : F<"X", "Ignore 'include' variable.">;
29 def add_null : F<"N", "Null-terminate all strings in the string table.">;
31 def dupid_nowarn : F<"Y", "Suppress warnings on duplicate resource IDs.">;
33 def verbose : F<"V", "Be verbose.">;
34 def help : F<"?", "Display this help and exit.">;
35 def h : F<"H", "Display this help and exit.">, Alias<help>;
37 def codepage : JS<"C", "Set the codepage used for input strings.">;
39 // llvm-rc specific options:
41 def dry_run : F<"dry-run", "Don't compile the input; only try to parse it.">;
43 def no_preprocess : F<"no-preprocess", "Don't try to preprocess the input file.">;
45 // Print (but do not run) the commands to run for preprocessing
46 def _HASH_HASH_HASH : F_nodoc<"###">;
48 // Unused switches (at least for now). These will stay unimplemented
49 // in an early stage of development and can be ignored. However, we need to
50 // parse them in order to preserve the compatibility with the original tool.
52 def nologo : F_nodoc<"NOLOGO">;
53 def r : F_nodoc<"R">;
54 def sl : F_nodoc<"SL">;
56 // (Codepages support.)
57 def w : F_nodoc<"W">;
59 // (Support of MUI and similar.)
60 def fm : S_nodoc<"FM">;
61 def q : S_nodoc<"Q">;
62 def g : F_nodoc<"G">;
63 def gn : F_nodoc<"GN">;
64 def g1 : F_nodoc<"G1">;
65 def g2 : F_nodoc<"G2">;