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

Method LLString

ir/types/types.go:750–752  ·  view source on GitHub ↗

LLString returns the LLVM syntax representation of the definition of the type. '[' Len=UintLit 'x' Elem=Type ']'

()

Source from the content-addressed store, hash-verified

748//
749// '[' Len=UintLit 'x' Elem=Type ']'
750func (t *ArrayType) LLString() string {
751 return fmt.Sprintf("[%d x %s]", t.Len, t.ElemType)
752}
753
754// Name returns the type name of the type.
755func (t *ArrayType) Name() string {

Callers 1

StringMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected