summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp')
-rw-r--r--llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp b/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
index ba963d9b1de..bbf5ea235c7 100644
--- a/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
+++ b/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
@@ -8,7 +8,6 @@
#include <iostream>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
- if (Size > 64) return 0;
int bits = 0;
if (Size > 0 && Data[0] == 'F') bits |= 1;
if (Size > 1 && Data[1] == 'U') bits |= 2;
OpenPOWER on IntegriCloud