diff options
author | Kostya Serebryany <kcc@google.com> | 2015-08-01 01:42:51 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-08-01 01:42:51 +0000 |
commit | 8ce7424e9c3150385de060334e5f3c61518ce64e (patch) | |
tree | 934e190d50cd2166d4dabd416da3825ff84cb5c8 /llvm/lib/Fuzzer/FuzzerTraceState.cpp | |
parent | 6e48a81309306c871a744c602bee74c9274f4b30 (diff) | |
download | llvm-8ce7424e9c3150385de060334e5f3c61518ce64e.zip llvm-8ce7424e9c3150385de060334e5f3c61518ce64e.tar.gz llvm-8ce7424e9c3150385de060334e5f3c61518ce64e.tar.bz2 |
[libFuzzer] start refactoring the Mutator and adding tests to it
llvm-svn: 243817
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerTraceState.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerTraceState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerTraceState.cpp b/llvm/lib/Fuzzer/FuzzerTraceState.cpp index f0537c0..1c01e8a 100644 --- a/llvm/lib/Fuzzer/FuzzerTraceState.cpp +++ b/llvm/lib/Fuzzer/FuzzerTraceState.cpp @@ -140,7 +140,7 @@ static bool ComputeCmp(size_t CmpSize, size_t CmpType, uint64_t Arg1, if (CmpSize == 1) return ComputeCmp<uint8_t, int8_t>(CmpType, Arg1, Arg2); // Other size, == if (CmpType == ICMP_EQ) return Arg1 == Arg2; - assert(0 && "unsupported cmp and type size combination"); + // assert(0 && "unsupported cmp and type size combination"); return true; } |