MCPcopy Create free account
hub / github.com/llir/llvm / ArrayType

Struct ArrayType

ir/types/types.go:709–716  ·  view source on GitHub ↗

--- [ Array types ] --------------------------------------------------------- ArrayType is an LLVM IR array type.

Source from the content-addressed store, hash-verified

707
708// ArrayType is an LLVM IR array type.
709type ArrayType struct {
710 // Type name; or empty if not present.
711 TypeName string
712 // Array length.
713 Len uint64
714 // Element type.
715 ElemType Type
716}
717
718// NewArray returns a new array type based on the given array length and element
719// type.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected