From d5b6d583c16f60e4a2f80f8b0fe78abab503f84c Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Fri, 27 Mar 2026 16:42:41 -0700 Subject: test/codegen: replace commas with spaces between regexps Change-Id: Ia7a955833d761e08c1b8081fb29a2e6317de004c Reviewed-on: https://go-review.googlesource.com/c/go/+/760681 Auto-Submit: Keith Randall Reviewed-by: Junyang Shao Reviewed-by: Paul Murphy Reviewed-by: Keith Randall LUCI-TryBot-Result: Go LUCI --- test/codegen/memops.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/codegen/memops.go') diff --git a/test/codegen/memops.go b/test/codegen/memops.go index 4d7bdfb685..378521c5f7 100644 --- a/test/codegen/memops.go +++ b/test/codegen/memops.go @@ -367,9 +367,9 @@ func idxFloatOps(a []float64, b []float32, i int) (float64, float32) { } func storeTest(a []bool, v int, i int) { - // amd64: `BTL \$0,`,`SETCS 4\([A-Z]+[0-9]*\)` + // amd64: `BTL \$0,` `SETCS 4\([A-Z]+[0-9]*\)` a[4] = v&1 != 0 - // amd64: `BTL \$1,`,`SETCS 3\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\)` + // amd64: `BTL \$1,` `SETCS 3\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\)` a[3+i] = v&2 != 0 } -- cgit v1.3-5-g9baa