xref: /freebsd-src/lib/libc/powerpc64/softfloat/milieu.h (revision 2a63c3be158216222d89a073dcbd6a72ee4aab5a)
1*840b91ccSNathan Whitehorn /* $NetBSD: milieu.h,v 1.1 2000/12/29 20:13:54 bjh21 Exp $ */
2*840b91ccSNathan Whitehorn 
3*840b91ccSNathan Whitehorn /*
4*840b91ccSNathan Whitehorn ===============================================================================
5*840b91ccSNathan Whitehorn 
6*840b91ccSNathan Whitehorn This C header file is part of the SoftFloat IEC/IEEE Floating-point
7*840b91ccSNathan Whitehorn Arithmetic Package, Release 2a.
8*840b91ccSNathan Whitehorn 
9*840b91ccSNathan Whitehorn Written by John R. Hauser.  This work was made possible in part by the
10*840b91ccSNathan Whitehorn International Computer Science Institute, located at Suite 600, 1947 Center
11*840b91ccSNathan Whitehorn Street, Berkeley, California 94704.  Funding was partially provided by the
12*840b91ccSNathan Whitehorn National Science Foundation under grant MIP-9311980.  The original version
13*840b91ccSNathan Whitehorn of this code was written as part of a project to build a fixed-point vector
14*840b91ccSNathan Whitehorn processor in collaboration with the University of California at Berkeley,
15*840b91ccSNathan Whitehorn overseen by Profs. Nelson Morgan and John Wawrzynek.  More information
16*840b91ccSNathan Whitehorn is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
17*840b91ccSNathan Whitehorn arithmetic/SoftFloat.html'.
18*840b91ccSNathan Whitehorn 
19*840b91ccSNathan Whitehorn THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
20*840b91ccSNathan Whitehorn has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
21*840b91ccSNathan Whitehorn TIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
22*840b91ccSNathan Whitehorn PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
23*840b91ccSNathan Whitehorn AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
24*840b91ccSNathan Whitehorn 
25*840b91ccSNathan Whitehorn Derivative works are acceptable, even for commercial purposes, so long as
26*840b91ccSNathan Whitehorn (1) they include prominent notice that the work is derivative, and (2) they
27*840b91ccSNathan Whitehorn include prominent notice akin to these four paragraphs for those parts of
28*840b91ccSNathan Whitehorn this code that are retained.
29*840b91ccSNathan Whitehorn 
30*840b91ccSNathan Whitehorn ===============================================================================
31*840b91ccSNathan Whitehorn */
32*840b91ccSNathan Whitehorn 
33*840b91ccSNathan Whitehorn /*
34*840b91ccSNathan Whitehorn -------------------------------------------------------------------------------
35*840b91ccSNathan Whitehorn Include common integer types and flags.
36*840b91ccSNathan Whitehorn -------------------------------------------------------------------------------
37*840b91ccSNathan Whitehorn */
38*840b91ccSNathan Whitehorn #include "powerpc-gcc.h"
39*840b91ccSNathan Whitehorn 
40*840b91ccSNathan Whitehorn /*
41*840b91ccSNathan Whitehorn -------------------------------------------------------------------------------
42*840b91ccSNathan Whitehorn Symbolic Boolean literals.
43*840b91ccSNathan Whitehorn -------------------------------------------------------------------------------
44*840b91ccSNathan Whitehorn */
45*840b91ccSNathan Whitehorn enum {
46*840b91ccSNathan Whitehorn     FALSE = 0,
47*840b91ccSNathan Whitehorn     TRUE  = 1
48*840b91ccSNathan Whitehorn };
49