s_logbl.S revision 259065
1254721Semaste/*
2254721Semaste * Copyright (c) 1993,94 Winning Strategies, Inc.
3254721Semaste * All rights reserved.
4254721Semaste *
5254721Semaste * Redistribution and use in source and binary forms, with or without
6254721Semaste * modification, are permitted provided that the following conditions
7254721Semaste * are met:
8254721Semaste * 1. Redistributions of source code must retain the above copyright
9254721Semaste *    notice, this list of conditions and the following disclaimer.
10254721Semaste * 2. Redistributions in binary form must reproduce the above copyright
11254721Semaste *    notice, this list of conditions and the following disclaimer in the
12254721Semaste *    documentation and/or other materials provided with the distribution.
13254721Semaste * 3. All advertising materials mentioning features or use of this software
14254721Semaste *    must display the following acknowledgement:
15254721Semaste *      This product includes software developed by Winning Strategies, Inc.
16254721Semaste * 4. The name of the author may not be used to endorse or promote products
17254721Semaste *    derived from this software without specific prior written permission
18254721Semaste *
19254721Semaste * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20254721Semaste * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21254721Semaste * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22254721Semaste * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23254721Semaste * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24254721Semaste * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25254721Semaste * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26254721Semaste * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27254721Semaste * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28254721Semaste * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29296417Sdim */
30296417Sdim
31254721Semaste/*
32254721Semaste * Written by:
33254721Semaste *	J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
34254721Semaste */
35254721Semaste
36254721Semaste#include <machine/asm.h>
37254721Semaste__FBSDID("$FreeBSD: releng/10.0/lib/msun/i387/s_logbl.S 217108 2011-01-07 16:13:12Z kib $")
38254721Semaste
39296417SdimENTRY(logbl)
40254721Semaste	fldt	4(%esp)
41254721Semaste	fxtract
42254721Semaste	fstp	%st
43254721Semaste	ret
44254721Semaste
45254721Semaste	.section .note.GNU-stack,"",%progbits
46296417Sdim