Reduced memory usage
This commit is contained in:
@ -64,7 +64,7 @@ func (f *Function) CompileTokens(body token.List) error {
|
||||
|
||||
if config.Verbose {
|
||||
f.debug = append(f.debug, debug{
|
||||
pos: len(f.Assembler.Instructions),
|
||||
position: len(f.Assembler.Instructions),
|
||||
instruction: instruction,
|
||||
})
|
||||
}
|
||||
@ -233,7 +233,7 @@ func (f *Function) PrintAsm() {
|
||||
ansi.Dim.Println("╭──────────────────────────────────────╮")
|
||||
|
||||
for i, x := range f.Assembler.Instructions {
|
||||
instruction := f.debugLine(i)
|
||||
instruction := f.instructionAt(i)
|
||||
|
||||
if instruction != nil {
|
||||
ansi.Dim.Println("├──────────────────────────────────────┤")
|
||||
|
Reference in New Issue
Block a user