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