11541Srgrimes/*-
21541Srgrimes * Copyright 2001 by Thomas Moestl <tmm@FreeBSD.org>.  All rights reserved.
31541Srgrimes *
41541Srgrimes * Redistribution and use in source and binary forms, with or without
51541Srgrimes * modification, are permitted provided that the following conditions
61541Srgrimes * are met:
71541Srgrimes * 1. Redistributions of source code must retain the above copyright
81541Srgrimes *    notice, this list of conditions and the following disclaimer.
91541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
101541Srgrimes *    notice, this list of conditions and the following disclaimer in the
111541Srgrimes *    documentation and/or other materials provided with the distribution.
121541Srgrimes *
131541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
141541Srgrimes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
151541Srgrimes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
161541Srgrimes * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
171541Srgrimes * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
181541Srgrimes * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
191541Srgrimes * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
201541Srgrimes * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
211541Srgrimes * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
221541Srgrimes * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
231541Srgrimes *
241541Srgrimes * $FreeBSD$
251541Srgrimes */
261541Srgrimes
271541Srgrimes#ifndef	_MACHINE_FP_H_
281541Srgrimes#define	_MACHINE_FP_H_
291541Srgrimes
301541Srgrimes#ifdef _KERNEL
311541Srgrimes
321541Srgrimes/*
331541Srgrimes * Note: The pointer passed to savefpctx must be aligned on a 64 byte
3413765Smpp * boundary.
351541Srgrimes */
361541Srgrimesvoid	savefpctx(uint32_t *fp);
372168Spaul
382168Spaul#endif /* _KERNEL */
392168Spaul#endif /* !_MACHINE_FP_H_ */
401541Srgrimes