diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp b/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp index b5a61ddca71..dfb6007b797 100644 --- a/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp +++ b/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp @@ -9,7 +9,7 @@ #include <cstring> extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { - if (Size < 16 || Size > 64) return 0; + if (Size < 16) return 0; int64_t x; uint64_t y; memcpy(&x, Data, sizeof(x)); |