diff options
Diffstat (limited to 'test/codegen')
| -rw-r--r-- | test/codegen/condmove.go | 2 | ||||
| -rw-r--r-- | test/codegen/spectre.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/codegen/condmove.go b/test/codegen/condmove.go index 6c08116b2c..1058910307 100644 --- a/test/codegen/condmove.go +++ b/test/codegen/condmove.go @@ -57,7 +57,7 @@ func cmov16bit(x, y uint16) uint16 { } // amd64:"CMOVW(HI|CS)" // arm64:"CSNEG\t(LS|HS)" - // ppc64x:"ISEL\t[$]0" + // ppc64x:"ISEL\t[$][01]" // wasm:"Select" return x } diff --git a/test/codegen/spectre.go b/test/codegen/spectre.go index d845da35ce..edc8b28028 100644 --- a/test/codegen/spectre.go +++ b/test/codegen/spectre.go @@ -13,12 +13,12 @@ func IndexArray(x *[10]int, i int) int { } func IndexString(x string, i int) byte { - // amd64:`CMOVQLS` + // amd64:`CMOVQ(LS|CC)` return x[i] } func IndexSlice(x []float64, i int) float64 { - // amd64:`CMOVQLS` + // amd64:`CMOVQ(LS|CC)` return x[i] } |
