1209878Snwhitehorn/* $NetBSD: milieu.h,v 1.1 2000/12/29 20:13:54 bjh21 Exp $ */
2209878Snwhitehorn/* $FreeBSD: releng/11.0/lib/libc/powerpc64/softfloat/milieu.h 209878 2010-07-10 14:45:03Z nwhitehorn $ */
3209878Snwhitehorn
4209878Snwhitehorn/*
5209878Snwhitehorn===============================================================================
6209878Snwhitehorn
7209878SnwhitehornThis C header file is part of the SoftFloat IEC/IEEE Floating-point
8209878SnwhitehornArithmetic Package, Release 2a.
9209878Snwhitehorn
10209878SnwhitehornWritten by John R. Hauser.  This work was made possible in part by the
11209878SnwhitehornInternational Computer Science Institute, located at Suite 600, 1947 Center
12209878SnwhitehornStreet, Berkeley, California 94704.  Funding was partially provided by the
13209878SnwhitehornNational Science Foundation under grant MIP-9311980.  The original version
14209878Snwhitehornof this code was written as part of a project to build a fixed-point vector
15209878Snwhitehornprocessor in collaboration with the University of California at Berkeley,
16209878Snwhitehornoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
17209878Snwhitehornis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
18209878Snwhitehornarithmetic/SoftFloat.html'.
19209878Snwhitehorn
20209878SnwhitehornTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
21209878Snwhitehornhas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
22209878SnwhitehornTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
23209878SnwhitehornPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
24209878SnwhitehornAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
25209878Snwhitehorn
26209878SnwhitehornDerivative works are acceptable, even for commercial purposes, so long as
27209878Snwhitehorn(1) they include prominent notice that the work is derivative, and (2) they
28209878Snwhitehorninclude prominent notice akin to these four paragraphs for those parts of
29209878Snwhitehornthis code that are retained.
30209878Snwhitehorn
31209878Snwhitehorn===============================================================================
32209878Snwhitehorn*/
33209878Snwhitehorn
34209878Snwhitehorn/*
35209878Snwhitehorn-------------------------------------------------------------------------------
36209878SnwhitehornInclude common integer types and flags.
37209878Snwhitehorn-------------------------------------------------------------------------------
38209878Snwhitehorn*/
39209878Snwhitehorn#include "powerpc-gcc.h"
40209878Snwhitehorn
41209878Snwhitehorn/*
42209878Snwhitehorn-------------------------------------------------------------------------------
43209878SnwhitehornSymbolic Boolean literals.
44209878Snwhitehorn-------------------------------------------------------------------------------
45209878Snwhitehorn*/
46209878Snwhitehornenum {
47209878Snwhitehorn    FALSE = 0,
48209878Snwhitehorn    TRUE  = 1
49209878Snwhitehorn};
50