Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
27 lines
1021 B
C
27 lines
1021 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*---------------------------------------------------------------------------+
|
|
| reg_constant.h |
|
|
| |
|
|
| Copyright (C) 1992 W. Metzenthen, 22 Parker St, Ormond, Vic 3163, |
|
|
| Australia. E-mail billm@vaxc.cc.monash.edu.au |
|
|
| |
|
|
+---------------------------------------------------------------------------*/
|
|
|
|
#ifndef _REG_CONSTANT_H_
|
|
#define _REG_CONSTANT_H_
|
|
|
|
#include "fpu_emu.h"
|
|
|
|
extern FPU_REG const CONST_1;
|
|
extern FPU_REG const CONST_PI;
|
|
extern FPU_REG const CONST_PI2;
|
|
extern FPU_REG const CONST_PI2extra;
|
|
extern FPU_REG const CONST_PI4;
|
|
extern FPU_REG const CONST_Z;
|
|
extern FPU_REG const CONST_PINF;
|
|
extern FPU_REG const CONST_INF;
|
|
extern FPU_REG const CONST_MINF;
|
|
extern FPU_REG const CONST_QNaN;
|
|
|
|
#endif /* _REG_CONSTANT_H_ */
|