q/src/ssa2asm/Count.go
Eduard Urbach 3301cf5542
All checks were successful
/ test (push) Successful in 15s
Improved ssa compiler
2025-07-02 16:55:24 +02:00

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
}