10 lines
145 B
Go
10 lines
145 B
Go
package llvm
|
|
|
|
import "fmt"
|
|
|
|
type AddressSpace uint64
|
|
|
|
func (space AddressSpace) String () string {
|
|
return fmt.Sprintf("addrspace(%d)", space)
|
|
}
|