From d6492e284b61c8be4bfce5ee0ca907f4df5deb72 Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Fri, 27 Mar 2026 16:20:06 -0700 Subject: test/codegen: get rid of \s Replace \s with a space in backtick-quoted strings Replace \\s with a space in double-quoted strings Change-Id: I0c8b249bb12c2c8ca69e683e4bc6f27544fd6094 Reviewed-on: https://go-review.googlesource.com/c/go/+/760680 Auto-Submit: Keith Randall Reviewed-by: Junyang Shao Reviewed-by: Paul Murphy Reviewed-by: Keith Randall LUCI-TryBot-Result: Go LUCI --- test/codegen/issue72832.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/codegen/issue72832.go') diff --git a/test/codegen/issue72832.go b/test/codegen/issue72832.go index 392b41b173..2af76aa16f 100644 --- a/test/codegen/issue72832.go +++ b/test/codegen/issue72832.go @@ -43,8 +43,8 @@ func store_shifted(t *tile3, x uint32) { func store_const(t *tile3) { // 0x00030201 - // amd64:`MOVL\s\$197121` + // amd64:`MOVL \$197121` // 0x01020003 - // ppc64:`MOVD\s\$16908291` + // ppc64:`MOVD \$16908291` t.a, t.b, t.c = 1, 2, 3 } -- cgit v1.3-5-g9baa