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