2010-06-30 15:44:27 -06:00
|
|
|
// Copyright 2010 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.
|
|
|
|
|
2014-08-12 18:04:45 -06:00
|
|
|
#include "textflag.h"
|
2013-08-12 11:25:18 -06:00
|
|
|
|
2011-09-29 10:54:20 -06:00
|
|
|
// func Abs(x float64) float64
|
2013-08-12 11:25:18 -06:00
|
|
|
TEXT ·Abs(SB),NOSPLIT,$0
|
2010-06-30 15:44:27 -06:00
|
|
|
MOVQ $(1<<63), BX
|
|
|
|
MOVQ BX, X0 // movsd $(-0.0), x0
|
|
|
|
MOVSD x+0(FP), X1
|
|
|
|
ANDNPD X1, X0
|
2013-03-22 10:57:55 -06:00
|
|
|
MOVSD X0, ret+8(FP)
|
2010-06-30 15:44:27 -06:00
|
|
|
RET
|