Reduced usage of temporary registers

This commit is contained in:
2024-07-10 10:48:15 +02:00
parent 4386392844
commit d3436b13a5
6 changed files with 13 additions and 25 deletions

View File

@ -1,6 +1,8 @@
package core
import (
"fmt"
"git.akyoto.dev/cli/q/src/build/asm"
"git.akyoto.dev/cli/q/src/build/config"
"git.akyoto.dev/cli/q/src/build/cpu"
@ -17,8 +19,8 @@ func (f *Function) Call(label string) {
f.postInstruction()
}
func (f *Function) Comment(comment string) {
f.assembler.Comment(comment)
func (f *Function) Comment(format string, args ...any) {
f.assembler.Comment(fmt.Sprintf(format, args...))
f.postInstruction()
}