OutputType
private enum OutputType : String, ExpressibleByArgument, Sendable
The type of the output files to generate.
-
AST before type-checking.
Declaration
Swift
case rawAST = "raw-ast" -
Hylo IR before mandatory transformations.
Declaration
Swift
case rawIR = "raw-ir" -
Hylo IR.
Declaration
Swift
case ir = "ir" -
LLVM IR
Declaration
Swift
case llvm = "llvm" -
Intel ASM
Declaration
Swift
case intelAsm = "intel-asm" -
Executable binary.
Declaration
Swift
case binary = "binary"
View on GitHub