2015-10-31 01:59:47 +01:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2016-08-06 02:36:33 +02:00
|
|
|
// +build ignore
|
|
|
|
// -build amd64 amd64p32
|
2015-10-31 01:59:47 +01:00
|
|
|
|
2016-02-03 22:58:02 +01:00
|
|
|
package math
|
2015-10-31 01:59:47 +01:00
|
|
|
|
2016-02-03 22:58:02 +01:00
|
|
|
//defined in floor_amd64.s
|
|
|
|
func hasSSE4() bool
|
|
|
|
|
|
|
|
var useSSE4 = hasSSE4()
|