1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[libFuzzer] speculatively trying to fix the Mac build

llvm-svn: 285259
This commit is contained in:
Kostya Serebryany 2016-10-27 00:22:39 +00:00
parent 072144e29f
commit f35719f98d

View File

@ -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 hapen.
// Do nothing, these don't usually happen.
}
void TORCInsert(size_t Idx, uint32_t Arg1, uint32_t Arg2) {
TORC4.Insert(Idx, Arg1, Arg2);
@ -119,6 +119,9 @@ 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];