From dbaec740a8acbce1e0c2bffb0196be25d844d6a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20S=C3=A1ez?= Date: Wed, 21 Sep 2022 17:11:48 +0200 Subject: [PATCH] WIP --- pkg/proc/ppc64le_arch.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/proc/ppc64le_arch.go b/pkg/proc/ppc64le_arch.go index cdf2f8bbf1..4b5b915ce3 100644 --- a/pkg/proc/ppc64le_arch.go +++ b/pkg/proc/ppc64le_arch.go @@ -2,6 +2,7 @@ package proc import ( "encoding/binary" + "fmt" "github.com/go-delve/delve/pkg/dwarf/frame" "strings" @@ -190,6 +191,7 @@ func ppc64leSwitchStack(it *stackIterator, callFrameRegs *op.DwarfRegisters) boo // ppc64leRegSize returns the size (in bytes) of register regnum. func ppc64leRegSize(rn uint64) int { // FIXME(alexsaezm) Fix this, this is clearly not correct + fmt.Println("Here") if rn == regnum.PPC64LE_PC { return 8 }