181147Stmm/*-
281147Stmm * Copyright 2001 by Thomas Moestl <tmm@FreeBSD.org>.  All rights reserved.
381147Stmm *
481147Stmm * Redistribution and use in source and binary forms, with or without
581147Stmm * modification, are permitted provided that the following conditions
681147Stmm * are met:
781147Stmm * 1. Redistributions of source code must retain the above copyright
881147Stmm *    notice, this list of conditions and the following disclaimer.
981147Stmm * 2. Redistributions in binary form must reproduce the above copyright
1081147Stmm *    notice, this list of conditions and the following disclaimer in the
1181147Stmm *    documentation and/or other materials provided with the distribution.
1281147Stmm *
1381392Sjake * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1481147Stmm * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1581147Stmm * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1681392Sjake * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
1781147Stmm * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1881147Stmm * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1981147Stmm * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2081147Stmm * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2181147Stmm * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
2281147Stmm * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2381147Stmm *
2481147Stmm * $FreeBSD$
2581147Stmm */
2681147Stmm
2781147Stmm#ifndef	_MACHINE_FP_H_
2881147Stmm#define	_MACHINE_FP_H_
2981147Stmm
3086530Sjake#ifdef _KERNEL
3186530Sjake
3281147Stmm/*
33112920Sjake * Note: The pointer passed to savefpctx must be aligned on a 64 byte
34112920Sjake * boundary.
3581147Stmm */
36112920Sjakevoid	savefpctx(uint32_t *fp);
3781147Stmm
3886530Sjake#endif /* _KERNEL */
3981147Stmm#endif /* !_MACHINE_FP_H_ */
40