We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69d8ab commit 28a3ba1Copy full SHA for 28a3ba1
libc/fuzzing/math/exp_fuzz.cpp
@@ -27,7 +27,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
27
28
// remove NaN and inf
29
if (isnan(x) || isinf(x))
30
- continue;
+ continue;
31
// signed zeros already tested in unit tests
32
if (signbit(x) && x == 0.0)
33
continue;
0 commit comments