1*0cc7838eSriastradh/* 2*0cc7838eSriastradh * Copyright (c) 1983, 1993 3*0cc7838eSriastradh * The Regents of the University of California. All rights reserved. 4*0cc7838eSriastradh * 5*0cc7838eSriastradh * Redistribution and use in source and binary forms, with or without 6*0cc7838eSriastradh * modification, are permitted provided that the following conditions 7*0cc7838eSriastradh * are met: 8*0cc7838eSriastradh * 1. Redistributions of source code must retain the above copyright 9*0cc7838eSriastradh * notice, this list of conditions and the following disclaimer. 10*0cc7838eSriastradh * 2. Redistributions in binary form must reproduce the above copyright 11*0cc7838eSriastradh * notice, this list of conditions and the following disclaimer in the 12*0cc7838eSriastradh * documentation and/or other materials provided with the distribution. 13*0cc7838eSriastradh * 3. Neither the name of the University nor the names of its contributors 14*0cc7838eSriastradh * may be used to endorse or promote products derived from this software 15*0cc7838eSriastradh * without specific prior written permission. 16*0cc7838eSriastradh * 17*0cc7838eSriastradh * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18*0cc7838eSriastradh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19*0cc7838eSriastradh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20*0cc7838eSriastradh * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21*0cc7838eSriastradh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22*0cc7838eSriastradh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23*0cc7838eSriastradh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24*0cc7838eSriastradh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25*0cc7838eSriastradh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26*0cc7838eSriastradh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27*0cc7838eSriastradh * SUCH DAMAGE. 28*0cc7838eSriastradh */ 29*0cc7838eSriastradh 30*0cc7838eSriastradh#include "DEFS.h" 31*0cc7838eSriastradh 32*0cc7838eSriastradh#if defined(LIBC_SCCS) && !defined(lint) 33*0cc7838eSriastradh /* .asciz "@(#)fabs.s 8.1 (Berkeley) 6/4/93" */ 34*0cc7838eSriastradhRCSID("$NetBSD: fabsf.S,v 1.1 2018/11/08 18:19:37 riastradh Exp $") 35*0cc7838eSriastradh#endif /* LIBC_SCCS and not lint */ 36*0cc7838eSriastradh 37*0cc7838eSriastradh/* fabsf - floating absolute value, float edition */ 38*0cc7838eSriastradh 39*0cc7838eSriastradhENTRY(fabsf, 0) 40*0cc7838eSriastradh movf 4(%ap),%r0 41*0cc7838eSriastradh bgeq 1f 42*0cc7838eSriastradh mnegf %r0,%r0 43*0cc7838eSriastradh1: 44*0cc7838eSriastradh ret 45*0cc7838eSriastradhEND(fabsf) 46