e_sqrtl.S revision 213337
1215976Sjmallett/*
2232812Sjmallett * Copyright (c) 1993,94 Winning Strategies, Inc.
3215976Sjmallett * All rights reserved.
4215976Sjmallett *
5215976Sjmallett * Redistribution and use in source and binary forms, with or without
6215976Sjmallett * modification, are permitted provided that the following conditions
7215976Sjmallett * are met:
8215976Sjmallett * 1. Redistributions of source code must retain the above copyright
9215976Sjmallett *    notice, this list of conditions and the following disclaimer.
10215976Sjmallett * 2. Redistributions in binary form must reproduce the above copyright
11215976Sjmallett *    notice, this list of conditions and the following disclaimer in the
12215976Sjmallett *    documentation and/or other materials provided with the distribution.
13215976Sjmallett * 3. All advertising materials mentioning features or use of this software
14215976Sjmallett *    must display the following acknowledgement:
15215976Sjmallett *      This product includes software developed by Winning Strategies, Inc.
16215976Sjmallett * 4. The name of the author may not be used to endorse or promote products
17215976Sjmallett *    derived from this software without specific prior written permission.
18232812Sjmallett *
19215976Sjmallett * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20215976Sjmallett * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21215976Sjmallett * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22215976Sjmallett * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23215976Sjmallett * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24215976Sjmallett * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25215976Sjmallett * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26215976Sjmallett * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27215976Sjmallett * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28215976Sjmallett * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29232812Sjmallett */
30215976Sjmallett
31215976Sjmallett/*
32215976Sjmallett * Written by:
33215976Sjmallett *	J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
34215976Sjmallett */
35215976Sjmallett
36215976Sjmallett#include <machine/asm.h>
37215976Sjmallett__FBSDID("$FreeBSD: head/lib/msun/i387/e_sqrtl.S 213337 2010-10-01 20:14:36Z dim $")
38215976Sjmallett
39215976SjmallettENTRY(sqrtl)
40215976Sjmallett	fldt	4(%esp)
41215976Sjmallett	fsqrt
42215976Sjmallett	ret
43215976Sjmallett