Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Takeshi Yoneda <[email protected]>
  • Loading branch information
mathetake committed Jan 8, 2024
1 parent 9d7c037 commit 30b0558
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions internal/engine/wazevo/backend/isa/amd64/instr.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ func (i *instruction) Prev() regalloc.Instr {
return i.prev
}

// AddedBeforeRegAlloc implements regalloc.Instr.
func (i *instruction) AddedBeforeRegAlloc() bool { return i.addedBeforeRegAlloc }

// String implements regalloc.Instr.
func (i *instruction) String() string {
// TODO implement me
Expand Down Expand Up @@ -74,12 +77,6 @@ func (i *instruction) IsReturn() bool {
panic("implement me")
}

// AddedBeforeRegAlloc implements regalloc.Instr.
func (i *instruction) AddedBeforeRegAlloc() bool {
// TODO implement me
panic("implement me")
}

func resetInstruction(i *instruction) {
*i = instruction{}
}
Expand Down

0 comments on commit 30b0558

Please sign in to comment.