diff options
| author | van Hauser <vh@thc.org> | 2021-12-11 13:00:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 13:00:19 +0100 |
| commit | 5ec91ad5291228f6ef6d9b69605a9b752ef28fa0 (patch) | |
| tree | 03d433f881e6c49dbfd6e6093a6943937a07dec7 /test/test-fp_minusZerocases.c | |
| parent | 74aa826b60601eb59038bf61298b07eb20944caa (diff) | |
| parent | 602eafc223d76987e447b431fc75903147a40c38 (diff) | |
| download | afl++-5ec91ad5291228f6ef6d9b69605a9b752ef28fa0.tar.gz | |
Merge pull request #1205 from yuawn/rename
rename active_paths
Diffstat (limited to 'test/test-fp_minusZerocases.c')
| -rw-r--r-- | test/test-fp_minusZerocases.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test-fp_minusZerocases.c b/test/test-fp_minusZerocases.c index 00beef2e..f821f2ab 100644 --- a/test/test-fp_minusZerocases.c +++ b/test/test-fp_minusZerocases.c @@ -6,15 +6,15 @@ #include <assert.h> #define _GNU_SOURCE -#include <math.h> /* for NaNs and infinity values */ +#include <math.h> /* for NaNs and infinity values */ int main() { volatile FLOAT_TYPE a, b; /* negative zero */ - a = 1.0 / -(1.0 / 0.0); /* negative 0 */ - b = 0.0; /* positive 0 */ + a = 1.0 / -(1.0 / 0.0); /* negative 0 */ + b = 0.0; /* positive 0 */ assert(!(a < b)); assert((a <= b)); assert(!(a > b)); @@ -22,8 +22,8 @@ int main() { assert(!(a != b)); assert((a == b)); - a = 1.0 / -(1.0 / 0.0); /* negative 0 */ - b = 1.0 / -(1.0 / 0.0); /* negative 0 */ + a = 1.0 / -(1.0 / 0.0); /* negative 0 */ + b = 1.0 / -(1.0 / 0.0); /* negative 0 */ assert(!(a < b)); assert((a <= b)); assert(!(a > b)); |
