slowfloat.c revision 207151
1230557Sjimharris
2230557Sjimharris/*
3230557Sjimharris===============================================================================
4230557Sjimharris
5230557SjimharrisThis C source file is part of TestFloat, Release 2a, a package of programs
6230557Sjimharrisfor testing the correctness of floating-point arithmetic complying to the
7230557SjimharrisIEC/IEEE Standard for Floating-Point.
8230557Sjimharris
9230557SjimharrisWritten by John R. Hauser.  More information is available through the Web
10230557Sjimharrispage `http://HTTP.CS.Berkeley.EDU/~jhauser/arithmetic/TestFloat.html'.
11230557Sjimharris
12230557SjimharrisTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
13230557Sjimharrishas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
14230557SjimharrisTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
15230557SjimharrisPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
16230557SjimharrisAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
17230557Sjimharris
18230557SjimharrisDerivative works are acceptable, even for commercial purposes, so long as
19230557Sjimharris(1) they include prominent notice that the work is derivative, and (2) they
20230557Sjimharrisinclude prominent notice akin to these four paragraphs for those parts of
21230557Sjimharristhis code that are retained.
22230557Sjimharris
23230557Sjimharris===============================================================================
24230557Sjimharris*/
25230557Sjimharris
26230557Sjimharris#include "milieu.h"
27230557Sjimharris#include "softfloat.h"
28230557Sjimharris#include "slowfloat.h"
29230557Sjimharris
30230557Sjimharris#ifdef BITS64
31230557Sjimharris#include "slowfloat-64.c"
32230557Sjimharris#else
33230557Sjimharris#include "slowfloat-32.c"
34230557Sjimharris#endif
35230557Sjimharris
36230557Sjimharris