From: Meng Zhuo Date: Wed, 22 May 2024 07:55:04 +0000 (+0800) Subject: test/codegen: add Mul test for riscv64 X-Git-Tag: go1.23rc1~152 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=019353d5323fcbffde939f4e85a68bd0093c6e14;p=gostls13.git test/codegen: add Mul test for riscv64 Change-Id: I51e9832317e5dee1e3fe0772e7592b3dae95a625 Reviewed-on: https://go-review.googlesource.com/c/go/+/586797 Reviewed-by: Keith Randall Reviewed-by: Keith Randall Auto-Submit: Keith Randall Reviewed-by: Cherry Mui LUCI-TryBot-Result: Go LUCI --- diff --git a/test/codegen/mathbits.go b/test/codegen/mathbits.go index 82a139acab..a743eaf3d3 100644 --- a/test/codegen/mathbits.go +++ b/test/codegen/mathbits.go @@ -827,6 +827,7 @@ func Mul(x, y uint) (hi, lo uint) { // ppc64x:"MULHDU","MULLD" // s390x:"MLGR" // mips64: "MULVU" + // riscv64:"MULHU","MUL" return bits.Mul(x, y) }