Update to go1.25.0
This commit is contained in:
@@ -88,3 +88,16 @@ func issue71228(dst *S, ptr *int) {
|
||||
//amd64:`.*runtime[.]wbMove`
|
||||
*dst = *sp
|
||||
}
|
||||
|
||||
func writeDouble(p *[2]*int, x, y *int) {
|
||||
// arm64: `LDP\s`, `STP\s\(R[0-9]+, R[0-9]+\), \(`,
|
||||
p[0] = x
|
||||
// arm64: `STP\s\(R[0-9]+, R[0-9]+\), 16\(`,
|
||||
p[1] = y
|
||||
}
|
||||
|
||||
func writeDoubleNil(p *[2]*int) {
|
||||
// arm64: `LDP\s`, `STP\s\(R[0-9]+, R[0-9]+\),`, `STP\s\(ZR, ZR\),`
|
||||
p[0] = nil
|
||||
p[1] = nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user