blob: 5234a1e881ee0f6c83e90c387f5f6b459a603ed7 [file] [log] [blame]
Charles L. Dorian5336cd82010-01-10 15:41:07 -08001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Rob Pike8bca1482014-08-12 17:04:45 -07005#include "textflag.h"
Keith Randall1f796632013-08-12 10:25:18 -07006
Charles L. Dorian5336cd82010-01-10 15:41:07 -08007// func Sqrt(x float64) float64
Keith Randall1f796632013-08-12 10:25:18 -07008TEXT ·Sqrt(SB),NOSPLIT,$0
Charles L. Dorian5336cd82010-01-10 15:41:07 -08009 FMOVD x+0(FP),F0
10 FSQRT
Russ Cox07720b62013-03-22 12:57:55 -040011 FMOVDP F0,ret+8(FP)
Charles L. Dorian5336cd82010-01-10 15:41:07 -080012 RET