LLString returns the LLVM syntax representation of the definition of the type. '[' Len=UintLit 'x' Elem=Type ']'
()
| 748 | // |
| 749 | // '[' Len=UintLit 'x' Elem=Type ']' |
| 750 | func (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. |
| 755 | func (t *ArrayType) Name() string { |