aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/writebarrier.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen/writebarrier.go')
-rw-r--r--test/codegen/writebarrier.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/codegen/writebarrier.go b/test/codegen/writebarrier.go
index c3c39c58f7..271d8d25d3 100644
--- a/test/codegen/writebarrier.go
+++ b/test/codegen/writebarrier.go
@@ -90,9 +90,9 @@ func issue71228(dst *S, ptr *int) {
}
func writeDouble(p *[2]*int, x, y *int) {
- // arm64: `LDP\s`, `STP\s\(R[0-9]+, R[0-9]+\), \(`,
+ // arm64: `LDP\s`, `STP\s\(R[0-9]+, R[0-9]+\), \(`
p[0] = x
- // arm64: `STP\s\(R[0-9]+, R[0-9]+\), 16\(`,
+ // arm64: `STP\s\(R[0-9]+, R[0-9]+\), 16\(`
p[1] = y
}