1176721Sdas/*
2176721Sdas * Copyright (c) 1993,94 Winning Strategies, Inc.
3176721Sdas * All rights reserved.
4176721Sdas *
5176721Sdas * Redistribution and use in source and binary forms, with or without
6176721Sdas * modification, are permitted provided that the following conditions
7176721Sdas * are met:
8176721Sdas * 1. Redistributions of source code must retain the above copyright
9176721Sdas *    notice, this list of conditions and the following disclaimer.
10176721Sdas * 2. Redistributions in binary form must reproduce the above copyright
11176721Sdas *    notice, this list of conditions and the following disclaimer in the
12176721Sdas *    documentation and/or other materials provided with the distribution.
13176721Sdas * 3. All advertising materials mentioning features or use of this software
14176721Sdas *    must display the following acknowledgement:
15176721Sdas *      This product includes software developed by Winning Strategies, Inc.
16176721Sdas * 4. The name of the author may not be used to endorse or promote products
17176721Sdas *    derived from this software without specific prior written permission.
18176721Sdas *
19176721Sdas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20176721Sdas * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21176721Sdas * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22176721Sdas * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23176721Sdas * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24176721Sdas * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25176721Sdas * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26176721Sdas * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27176721Sdas * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28176721Sdas * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29176721Sdas */
30176721Sdas
31176721Sdas/*
32176721Sdas * Written by:
33176721Sdas *	J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
34176721Sdas */
35176721Sdas
36176721Sdas#include <machine/asm.h>
37213337Sdim__FBSDID("$FreeBSD$")
38176721Sdas
39176721SdasENTRY(sqrtl)
40176721Sdas	fldt	4(%esp)
41176721Sdas	fsqrt
42176721Sdas	ret
43217108Skib
44217108Skib	.section .note.GNU-stack,"",%progbits
45