xref: /OK3568_Linux_fs/kernel/arch/x86/math-emu/reg_constant.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun /*---------------------------------------------------------------------------+
3*4882a593Smuzhiyun  |  reg_constant.h                                                           |
4*4882a593Smuzhiyun  |                                                                           |
5*4882a593Smuzhiyun  | Copyright (C) 1992    W. Metzenthen, 22 Parker St, Ormond, Vic 3163,      |
6*4882a593Smuzhiyun  |                       Australia.  E-mail   billm@vaxc.cc.monash.edu.au    |
7*4882a593Smuzhiyun  |                                                                           |
8*4882a593Smuzhiyun  +---------------------------------------------------------------------------*/
9*4882a593Smuzhiyun 
10*4882a593Smuzhiyun #ifndef _REG_CONSTANT_H_
11*4882a593Smuzhiyun #define _REG_CONSTANT_H_
12*4882a593Smuzhiyun 
13*4882a593Smuzhiyun #include "fpu_emu.h"
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun extern FPU_REG const CONST_1;
16*4882a593Smuzhiyun extern FPU_REG const CONST_PI;
17*4882a593Smuzhiyun extern FPU_REG const CONST_PI2;
18*4882a593Smuzhiyun extern FPU_REG const CONST_PI2extra;
19*4882a593Smuzhiyun extern FPU_REG const CONST_PI4;
20*4882a593Smuzhiyun extern FPU_REG const CONST_Z;
21*4882a593Smuzhiyun extern FPU_REG const CONST_PINF;
22*4882a593Smuzhiyun extern FPU_REG const CONST_INF;
23*4882a593Smuzhiyun extern FPU_REG const CONST_MINF;
24*4882a593Smuzhiyun extern FPU_REG const CONST_QNaN;
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun #endif /* _REG_CONSTANT_H_ */
27