aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/mathbits.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen/mathbits.go')
-rw-r--r--test/codegen/mathbits.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/codegen/mathbits.go b/test/codegen/mathbits.go
index 5adf7f5fcd..e405d6b1d2 100644
--- a/test/codegen/mathbits.go
+++ b/test/codegen/mathbits.go
@@ -558,6 +558,7 @@ func Mul(x, y uint) (hi, lo uint) {
// ppc64:"MULHDU","MULLD"
// ppc64le:"MULHDU","MULLD"
// s390x:"MLGR"
+ // mips64: "MULVU"
return bits.Mul(x, y)
}
@@ -567,6 +568,7 @@ func Mul64(x, y uint64) (hi, lo uint64) {
// ppc64:"MULHDU","MULLD"
// ppc64le:"MULHDU","MULLD"
// s390x:"MLGR"
+ // mips64: "MULVU"
return bits.Mul64(x, y)
}