1282909Semaste/*-
2282909Semaste * Copyright (c) 2015 The FreeBSD Foundation
3282909Semaste * All rights reserved.
4282909Semaste *
5282909Semaste * Redistribution and use in source and binary forms, with or without
6282909Semaste * modification, are permitted provided that the following conditions
7282909Semaste * are met:
8282909Semaste * 1. Redistributions of source code must retain the above copyright
9282909Semaste *    notice, this list of conditions and the following disclaimer.
10282909Semaste * 2. Redistributions in binary form must reproduce the above copyright
11282909Semaste *    notice, this list of conditions and the following disclaimer in the
12282909Semaste *    documentation and/or other materials provided with the distribution.
13282909Semaste *
14282909Semaste * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15282909Semaste * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16282909Semaste * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17282909Semaste * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18282909Semaste * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19282909Semaste * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20282909Semaste * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21282909Semaste * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22282909Semaste * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23282909Semaste * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24282909Semaste * SUCH DAMAGE.
25282909Semaste */
26282909Semaste
27282909Semaste#include <machine/asm.h>
28282909Semaste__FBSDID("$FreeBSD: releng/11.0/lib/libc/aarch64/gen/fabs.S 282909 2015-05-14 17:12:45Z emaste $");
29282909Semaste
30282909SemasteENTRY(fabs)
31282909Semaste	fabs d0, d0
32282909Semaste	ret
33282909SemasteEND(fabs)
34