1143207Sdas/*-
2143207Sdas * Copyright (c) 2005 David Schultz <das@FreeBSD.ORG>
3143207Sdas * All rights reserved.
4143207Sdas *
5143207Sdas * Redistribution and use in source and binary forms, with or without
6143207Sdas * modification, are permitted provided that the following conditions
7143207Sdas * are met:
8143207Sdas * 1. Redistributions of source code must retain the above copyright
9143207Sdas *    notice, this list of conditions and the following disclaimer.
10143207Sdas * 2. Redistributions in binary form must reproduce the above copyright
11143207Sdas *    notice, this list of conditions and the following disclaimer in the
12143207Sdas *    documentation and/or other materials provided with the distribution.
13143207Sdas *
14143207Sdas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15143207Sdas * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16143207Sdas * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17143207Sdas * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18143207Sdas * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19143207Sdas * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20143207Sdas * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21143207Sdas * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22143207Sdas * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23143207Sdas * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24143207Sdas * SUCH DAMAGE.
25143207Sdas */
26143207Sdas
27143207Sdas#include <machine/asm.h>
28143207Sdas__FBSDID("$FreeBSD$")
29143207Sdas
30143207SdasENTRY(fmal, 3)
31143207Sdas{
32143207Sdas	fma		f8 = f8, f9, f10
33143207Sdas	br.ret.sptk	b0
34143207Sdas}
35192760SattilioEND(fmal)
36