s_logbl.S revision 174719
12334Scsgr/*
22334Scsgr * Copyright (c) 1993,94 Winning Strategies, Inc.
32334Scsgr * All rights reserved.
42334Scsgr *
52334Scsgr * Redistribution and use in source and binary forms, with or without
62334Scsgr * modification, are permitted provided that the following conditions
72334Scsgr * are met:
82334Scsgr * 1. Redistributions of source code must retain the above copyright
92334Scsgr *    notice, this list of conditions and the following disclaimer.
102334Scsgr * 2. Redistributions in binary form must reproduce the above copyright
112334Scsgr *    notice, this list of conditions and the following disclaimer in the
122334Scsgr *    documentation and/or other materials provided with the distribution.
132334Scsgr * 3. All advertising materials mentioning features or use of this software
14262136Sbrueffer *    must display the following acknowledgement:
152334Scsgr *      This product includes software developed by Winning Strategies, Inc.
162334Scsgr * 4. The name of the author may not be used to endorse or promote products
172334Scsgr *    derived from this software without specific prior written permission
182334Scsgr *
192334Scsgr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
202334Scsgr * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
212334Scsgr * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
222334Scsgr * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
232334Scsgr * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
242334Scsgr * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
252334Scsgr * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
262334Scsgr * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
272334Scsgr * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
282334Scsgr * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
292334Scsgr */
3050476Speter
312334Scsgr/*
322334Scsgr * Written by:
332334Scsgr *	J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
3479529Sru */
352334Scsgr
3679754Sdd#include <machine/asm.h>
372334Scsgr
382334ScsgrRCSID("$FreeBSD: head/lib/msun/amd64/s_logbl.S 174719 2007-12-17 18:12:06Z bde $")
392334Scsgr
402334ScsgrENTRY(logbl)
4199500Scharnier	fldt	8(%rsp)
4299500Scharnier	fxtract
4399500Scharnier	fstp	%st
442334Scsgr	ret
4579754Sdd