CodegenFileType

public enum CodegenFileType

The supported types of files codegen can produce.

  • An object file (.o).

    Declaration

    Swift

    case object
  • An assembly file (.asm).

    Declaration

    Swift

    case assembly
  • An LLVM Bitcode file (.bc).

    Declaration

    Swift

    case bitCode
  • Returns the underlying LLVMCodeGenFileType associated with this file type.

    Declaration

    Swift

    public func asLLVM() -> LLVMCodeGenFileType