[llvm] r285260 - [libFuzzer] revert 285259 -- hit commit too soon
Kostya Serebryany via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 26 17:24:34 PDT 2016
Author: kcc
Date: Wed Oct 26 19:24:34 2016
New Revision: 285260
URL: http://llvm.org/viewvc/llvm-project?rev=285260&view=rev
Log:
[libFuzzer] revert 285259 -- hit commit too soon
Modified:
llvm/trunk/lib/Fuzzer/FuzzerTracePC.h
Modified: llvm/trunk/lib/Fuzzer/FuzzerTracePC.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/FuzzerTracePC.h?rev=285260&r1=285259&r2=285260&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/FuzzerTracePC.h (original)
+++ llvm/trunk/lib/Fuzzer/FuzzerTracePC.h Wed Oct 26 19:24:34 2016
@@ -111,7 +111,7 @@ private:
// Do nothing, too small to be interesting.
}
void TORCInsert(size_t Idx, uint16_t Arg1, uint16_t Arg2) {
- // Do nothing, these don't usually happen.
+ // Do nothing, these don't usually hapen.
}
void TORCInsert(size_t Idx, uint32_t Arg1, uint32_t Arg2) {
TORC4.Insert(Idx, Arg1, Arg2);
@@ -119,9 +119,6 @@ private:
void TORCInsert(size_t Idx, uint64_t Arg1, uint64_t Arg2) {
TORC8.Insert(Idx, Arg1, Arg2);
}
- void TORCInsert(size_t Idx, uintptr_t Arg1, uintptr_t Arg2) {
- TORC8.Insert(Idx, Arg1, Arg2);
- }
static const size_t kNumPCs = 1 << 24;
uintptr_t PCs[kNumPCs];
More information about the llvm-commits
mailing list