diff options
author | Kostya Serebryany <kcc@google.com> | 2016-01-12 02:36:59 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-01-12 02:36:59 +0000 |
commit | 4174005622e804e0b6f0f3ac7bcc5154b18c29b4 (patch) | |
tree | ced2a8d97e25f7bc753df3b4f184e8ff2358a43c /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | 859e86d9624f1d2fd6c7d45f3c8060cbce5c359b (diff) | |
download | bcm5719-llvm-4174005622e804e0b6f0f3ac7bcc5154b18c29b4.tar.gz bcm5719-llvm-4174005622e804e0b6f0f3ac7bcc5154b18c29b4.zip |
[libFuzzer] when a new unit is discovered using a dictionary, print all used dictionary entries
llvm-svn: 257435
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 1f4f8fb336b..c1e9daac980 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -38,6 +38,7 @@ std::string DirPlusFile(const std::string &DirPath, void Printf(const char *Fmt, ...); void Print(const Unit &U, const char *PrintAfter = ""); +void PrintASCII(const uint8_t *Data, size_t Size, const char *PrintAfter = ""); void PrintASCII(const Unit &U, const char *PrintAfter = ""); std::string Hash(const Unit &U); void SetTimer(int Seconds); |