9 lines
No EOL
213 B
Go
9 lines
No EOL
213 B
Go
package ssa2asm
|
|
|
|
// Counter is the data type for counters.
|
|
type Counter uint16
|
|
|
|
// Count stores how often a certain statement appeared so we can generate a unique label from it.
|
|
type Count struct {
|
|
Data Counter
|
|
} |