about summary refs log tree commit diff
path: root/test/test-fp_minusZerocases.c
diff options
context:
space:
mode:
authoryuawn <ssspeed00@gmail.com>2021-12-11 10:20:40 +0000
committeryuawn <ssspeed00@gmail.com>2021-12-11 10:20:40 +0000
commit5b9397f3dda38df3f63bd31e4fb5f8ad64d9f271 (patch)
treee3eeb77e74527ace90961af9d3ffaf35ab7bf0b0 /test/test-fp_minusZerocases.c
parent269054e5c5a5b8897dff230f4a5fe864e47d57ad (diff)
downloadafl++-5b9397f3dda38df3f63bd31e4fb5f8ad64d9f271.tar.gz
code format
Diffstat (limited to 'test/test-fp_minusZerocases.c')
-rw-r--r--test/test-fp_minusZerocases.c10
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));