Statistics
| Branch: | Revision:

root / target-arm / nwfpe / milieu.h @ 157777ef

History | View | Annotate | Download (1.9 kB)

1 00406dff bellard
2 00406dff bellard
/*
3 00406dff bellard
===============================================================================
4 00406dff bellard

5 00406dff bellard
This C header file is part of the SoftFloat IEC/IEEE Floating-point
6 00406dff bellard
Arithmetic Package, Release 2.
7 00406dff bellard

8 00406dff bellard
Written by John R. Hauser.  This work was made possible in part by the
9 00406dff bellard
International Computer Science Institute, located at Suite 600, 1947 Center
10 00406dff bellard
Street, Berkeley, California 94704.  Funding was partially provided by the
11 00406dff bellard
National Science Foundation under grant MIP-9311980.  The original version
12 00406dff bellard
of this code was written as part of a project to build a fixed-point vector
13 00406dff bellard
processor in collaboration with the University of California at Berkeley,
14 00406dff bellard
overseen by Profs. Nelson Morgan and John Wawrzynek.  More information
15 00406dff bellard
is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
16 00406dff bellard
arithmetic/softfloat.html'.
17 00406dff bellard

18 00406dff bellard
THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
19 00406dff bellard
has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
20 00406dff bellard
TIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
21 00406dff bellard
PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
22 00406dff bellard
AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
23 00406dff bellard

24 00406dff bellard
Derivative works are acceptable, even for commercial purposes, so long as
25 00406dff bellard
(1) they include prominent notice that the work is derivative, and (2) they
26 00406dff bellard
include prominent notice akin to these three paragraphs for those parts of
27 00406dff bellard
this code that are retained.
28 00406dff bellard

29 00406dff bellard
===============================================================================
30 00406dff bellard
*/
31 00406dff bellard
32 00406dff bellard
/*
33 00406dff bellard
-------------------------------------------------------------------------------
34 00406dff bellard
Include common integer types and flags.
35 00406dff bellard
-------------------------------------------------------------------------------
36 00406dff bellard
*/
37 00406dff bellard
#include "ARM-gcc.h"
38 00406dff bellard
39 00406dff bellard
/*
40 00406dff bellard
-------------------------------------------------------------------------------
41 00406dff bellard
Symbolic Boolean literals.
42 00406dff bellard
-------------------------------------------------------------------------------
43 00406dff bellard
*/
44 00406dff bellard
enum {
45 00406dff bellard
    FALSE = 0,
46 00406dff bellard
    TRUE  = 1
47 00406dff bellard
};