LLString returns the LLVM syntax representation of the definition of the type. int_type_tok
()
| 321 | // |
| 322 | // int_type_tok |
| 323 | func (t *IntType) LLString() string { |
| 324 | return fmt.Sprintf("i%d", t.BitSize) |
| 325 | } |
| 326 | |
| 327 | // Name returns the type name of the type. |
| 328 | func (t *IntType) Name() string { |