Open
Description
Hi , I am using this package on AWS Graviton4(Arm64, Neoverse-V2 and ARMv9 ISA) and Go 1.23,but sometimes it crashed.
After debugging, we found that problem may be in getg_arm64.s
file.
Should I change code of getg_arm64.s
to following ones?
TEXT ·getg(SB), NOSPLIT, $0-8
MOVD g, R8
MOVD R8, ret+0(FP)
RET
- change
$0-4
to$0-8
- change
MOVW
toMOVD
Thanks for helping.