]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/test/testfloat/sparc64/milieu.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / test / testfloat / sparc64 / milieu.h
1 #ifndef TESTFLOAT_SPARC64_MILIEU_H_
2 #define TESTFLOAT_SPARC64_MILIEU_H_
3
4 /*
5 ===============================================================================
6
7 This C header file is part of TestFloat, Release 2a, a package of programs
8 for testing the correctness of floating-point arithmetic complying to the
9 IEC/IEEE Standard for Floating-Point.
10
11 Written by John R. Hauser.  More information is available through the Web
12 page `http://HTTP.CS.Berkeley.EDU/~jhauser/arithmetic/TestFloat.html'.
13
14 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
15 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
16 TIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
17 PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
18 AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
19
20 Derivative works are acceptable, even for commercial purposes, so long as
21 (1) they include prominent notice that the work is derivative, and (2) they
22 include prominent notice akin to these four paragraphs for those parts of
23 this code that are retained.
24
25 ===============================================================================
26 */
27
28 /* $FreeBSD$ */
29
30 /*
31 -------------------------------------------------------------------------------
32 Include common integer types and flags.
33 -------------------------------------------------------------------------------
34 */
35 #include "sparc64.h"
36
37 /*
38 -------------------------------------------------------------------------------
39 If the `BITS64' macro is defined by the processor header file but the
40 version of SoftFloat being used/tested is the 32-bit one (`bits32'), the
41 `BITS64' macro must be undefined here.
42 -------------------------------------------------------------------------------
43 #undef BITS64
44 */
45
46 /*
47 -------------------------------------------------------------------------------
48 Symbolic Boolean literals.
49 -------------------------------------------------------------------------------
50 */
51 enum {
52     FALSE = 0,
53     TRUE  = 1
54 };
55
56 #endif