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