12 lines
207 B
Go
12 lines
207 B
Go
package z
|
|
|
|
import "git.akyoto.dev/cli/q/src/build/config"
|
|
|
|
func (f *Compiler) postInstruction() {
|
|
if !config.Assembler {
|
|
return
|
|
}
|
|
|
|
f.RegisterHistory = append(f.RegisterHistory, f.CurrentScope().Used)
|
|
}
|