aboutsummaryrefslogtreecommitdiff
path: root/test/codegen
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen')
-rw-r--r--test/codegen/condmove.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/codegen/condmove.go b/test/codegen/condmove.go
index 61f47b4d8f..6d1bba4c70 100644
--- a/test/codegen/condmove.go
+++ b/test/codegen/condmove.go
@@ -514,10 +514,10 @@ func cmovmathor(a uint, b bool) uint {
if b {
a |= 1
}
- // amd64:"ORQ", -"CMOV"
- // arm64:"ORR", -"CSEL"
- // ppc64x:"OR", -"ISEL"
- // wasm:"I64Or", -"Select"
+ // amd64:"ORQ" -"CMOV"
+ // arm64:"ORR" -"CSEL"
+ // ppc64x:"OR" -"ISEL"
+ // wasm:"I64Or" -"Select"
return a
}
@@ -525,10 +525,10 @@ func cmovmathxor(a uint, b bool) uint {
if b {
a ^= 1
}
- // amd64:"XORQ", -"CMOV"
- // arm64:"EOR", -"CSEL"
- // ppc64x:"XOR", -"ISEL"
- // wasm:"I64Xor", -"Select"
+ // amd64:"XORQ" -"CMOV"
+ // arm64:"EOR" -"CSEL"
+ // ppc64x:"XOR" -"ISEL"
+ // wasm:"I64Xor" -"Select"
return a
}