Mercurial > hg > octave-lojdl > gnulib-hg
annotate tests/test-ceilf-ieee.c @ 16364:89227b989588
fatal-signal: use C prototypes (with explicit void).
* lib/fatal-signal.c (uninstall_handlers, install_handlers)
(init_fatal_signal_set, block_fatal_signals): Fix signatures.
author | Akim Demaille <demaille@gostai.com> |
---|---|
date | Wed, 08 Feb 2012 10:36:20 +0100 |
parents | 8250f2777afc |
children | e055691d062c |
rev | line source |
---|---|
13978 | 1 /* Test of rounding towards positive infinity. |
16201
8250f2777afc
maint: update all copyright year number ranges
Jim Meyering <meyering@redhat.com>
parents:
14079
diff
changeset
|
2 Copyright (C) 2010-2012 Free Software Foundation, Inc. |
13978 | 3 |
4 This program is free software: you can redistribute it and/or modify | |
5 it under the terms of the GNU General Public License as published by | |
6 the Free Software Foundation; either version 3 of the License, or | |
7 (at your option) any later version. | |
8 | |
9 This program is distributed in the hope that it will be useful, | |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 GNU General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU General Public License | |
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
16 | |
17 #include <config.h> | |
18 | |
19 #include <math.h> | |
20 | |
21 #include "minus-zero.h" | |
22 #include "macros.h" | |
23 | |
24 /* If IEEE compliance was not requested, the ICC compiler inlines its | |
25 own ceilf assembly that turns -0.0f to 0.0f; but that is a correct | |
26 result when IEEE is not enforced. To avoid spurious failure, we | |
27 have to provide this dummy function in order to outsmart ICC's | |
28 inlining, and call our ceilf through a function pointer. */ | |
29 static float | |
30 dummy (float f) | |
31 { | |
32 return 0; | |
33 } | |
34 | |
35 int | |
36 main (int argc, char **argv _GL_UNUSED) | |
37 { | |
38 float (*my_ceilf) (float) = argc ? ceilf : dummy; | |
39 | |
13992
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
40 /* See IEEE 754, section 6.3: |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
41 "the sign of the result of the round floating-point number to |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
42 integral value operation is the sign of the operand. These rules |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
43 shall apply even when operands or results are zero or infinite." */ |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
44 |
13978 | 45 /* Zero. */ |
46 ASSERT (!signbit (my_ceilf (0.0f))); | |
47 ASSERT (!!signbit (my_ceilf (minus_zerof)) == !!signbit (minus_zerof)); | |
13992
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
48 /* Positive numbers. */ |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
49 ASSERT (!signbit (my_ceilf (0.3f))); |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
50 ASSERT (!signbit (my_ceilf (0.7f))); |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
51 /* Negative numbers. */ |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
52 ASSERT (!!signbit (my_ceilf (-0.3f)) == !!signbit (minus_zerof)); |
749c72ade953
ceil: Implement result sign according to IEEE 754.
Bruno Haible <bruno@clisp.org>
parents:
13978
diff
changeset
|
53 ASSERT (!!signbit (my_ceilf (-0.7f)) == !!signbit (minus_zerof)); |
13978 | 54 |
55 return 0; | |
56 } |