mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
10 lines
114 B
Go
10 lines
114 B
Go
// +build riscv64
|
|
|
|
package mathutil
|
|
|
|
func (f *float) sqr() {
|
|
f.n.Mul(f.n, f.n)
|
|
f.fracBits *= 2
|
|
f.normalize()
|
|
}
|