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