mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
96a564f2be
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169344 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
605 B
TableGen
14 lines
605 B
TableGen
include "llvm/Option/OptParser.td"
|
|
|
|
def A : Flag<["-"], "A">, HelpText<"The A option">;
|
|
def B : Joined<["-"], "B">, HelpText<"The B option">, MetaVarName<"B">;
|
|
def C : Separate<["-"], "C">, HelpText<"The C option">, MetaVarName<"C">;
|
|
def D : CommaJoined<["-"], "D">, HelpText<"The D option">, MetaVarName<"D">;
|
|
def E : MultiArg<["-"], "E", 2>;
|
|
def F : JoinedOrSeparate<["-"], "F">, HelpText<"The F option">, MetaVarName<"F">;
|
|
def G : JoinedAndSeparate<["-"], "G">, HelpText<"The G option">, MetaVarName<"G">;
|
|
|
|
def Ceq : Joined<["-", "--"], "C=">, Alias<C>;
|
|
|
|
def H : Flag<["-"], "H">, Flags<[HelpHidden]>;
|