aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/arithmetic.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen/arithmetic.go')
-rw-r--r--test/codegen/arithmetic.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/codegen/arithmetic.go b/test/codegen/arithmetic.go
index 063055053e..f09af769f5 100644
--- a/test/codegen/arithmetic.go
+++ b/test/codegen/arithmetic.go
@@ -647,7 +647,7 @@ func Int64Min(a, b int64) int64 {
// amd64: "CMPQ","CMOVQLT"
// arm64: "CMP","CSEL"
// riscv64/rva20u64:"BLT\t"
- // riscv64/rva22u64:"MIN\t"
+ // riscv64/rva22u64,riscv64/rva23u64:"MIN\t"
return min(a, b)
}
@@ -655,7 +655,7 @@ func Int64Max(a, b int64) int64 {
// amd64: "CMPQ","CMOVQGT"
// arm64: "CMP","CSEL"
// riscv64/rva20u64:"BLT\t"
- // riscv64/rva22u64:"MAX\t"
+ // riscv64/rva22u64,riscv64/rva23u64:"MAX\t"
return max(a, b)
}
@@ -663,7 +663,7 @@ func Uint64Min(a, b uint64) uint64 {
// amd64: "CMPQ","CMOVQCS"
// arm64: "CMP","CSEL"
// riscv64/rva20u64:"BLTU"
- // riscv64/rva22u64:"MINU"
+ // riscv64/rva22u64,riscv64/rva23u64:"MINU"
return min(a, b)
}
@@ -671,6 +671,6 @@ func Uint64Max(a, b uint64) uint64 {
// amd64: "CMPQ","CMOVQHI"
// arm64: "CMP","CSEL"
// riscv64/rva20u64:"BLTU"
- // riscv64/rva22u64:"MAXU"
+ // riscv64/rva22u64,riscv64/rva23u64:"MAXU"
return max(a, b)
}