1439e59cfSDavid Schultz/*- 2439e59cfSDavid Schultz * Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> 3439e59cfSDavid Schultz * All rights reserved. 4439e59cfSDavid Schultz * 5439e59cfSDavid Schultz * Redistribution and use in source and binary forms, with or without 6439e59cfSDavid Schultz * modification, are permitted provided that the following conditions 7439e59cfSDavid Schultz * are met: 8439e59cfSDavid Schultz * 1. Redistributions of source code must retain the above copyright 9439e59cfSDavid Schultz * notice, this list of conditions and the following disclaimer. 10439e59cfSDavid Schultz * 2. Redistributions in binary form must reproduce the above copyright 11439e59cfSDavid Schultz * notice, this list of conditions and the following disclaimer in the 12439e59cfSDavid Schultz * documentation and/or other materials provided with the distribution. 13439e59cfSDavid Schultz * 14439e59cfSDavid Schultz * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15439e59cfSDavid Schultz * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16439e59cfSDavid Schultz * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17439e59cfSDavid Schultz * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18439e59cfSDavid Schultz * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19439e59cfSDavid Schultz * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20439e59cfSDavid Schultz * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21439e59cfSDavid Schultz * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22439e59cfSDavid Schultz * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23439e59cfSDavid Schultz * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24439e59cfSDavid Schultz * SUCH DAMAGE. 25439e59cfSDavid Schultz */ 26439e59cfSDavid Schultz 27439e59cfSDavid Schultz#include <machine/asm.h> 28439e59cfSDavid SchultzENTRY(lrint) 29439e59cfSDavid Schultz fldl 4(%esp) 30439e59cfSDavid Schultz subl $4,%esp 31439e59cfSDavid Schultz fistpl (%esp) 32439e59cfSDavid Schultz popl %eax 33439e59cfSDavid Schultz ret 349235ed71SAttilio RaoEND(lrint) 35*8997563cSKonstantin Belousov 36*8997563cSKonstantin Belousov .section .note.GNU-stack,"",%progbits 37