mirror of https://github.com/golang/go.git
15 lines
317 B
Go
15 lines
317 B
Go
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !arm64
|
|
// +build !arm64
|
|
|
|
package math
|
|
|
|
const haveArchFrexp = false
|
|
|
|
func archFrexp(x float64) (frac float64, exp int)
|
|
panic("not implemented")
|
|
}
|