projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08714cd
)
[libFuzzer] replace 'auto' with 'auto *' to better follow the LLVM style
author
Kostya Serebryany
<kcc@google.com>
Mon, 14 Nov 2016 19:21:38 +0000
(19:21 +0000)
committer
Kostya Serebryany
<kcc@google.com>
Mon, 14 Nov 2016 19:21:38 +0000
(19:21 +0000)
llvm-svn: 286870
llvm/lib/Fuzzer/FuzzerDriver.cpp
patch
|
blob
|
history
diff --git
a/llvm/lib/Fuzzer/FuzzerDriver.cpp
b/llvm/lib/Fuzzer/FuzzerDriver.cpp
index
1fa8c3c
..
abf0597
100644
(file)
--- a/
llvm/lib/Fuzzer/FuzzerDriver.cpp
+++ b/
llvm/lib/Fuzzer/FuzzerDriver.cpp
@@
-446,9
+446,9
@@
int FuzzerDriver(int *argc, char ***argv, UserCallback Callback) {
Printf("INFO: Seed: %u\n", Seed);
Random Rand(Seed);
- auto MD = new MutationDispatcher(Rand, Options);
- auto Corpus = new InputCorpus(Options.OutputCorpus);
- auto F = new Fuzzer(Callback, *Corpus, *MD, Options);
+ auto
*
MD = new MutationDispatcher(Rand, Options);
+ auto
*
Corpus = new InputCorpus(Options.OutputCorpus);
+ auto
*
F = new Fuzzer(Callback, *Corpus, *MD, Options);
for (auto &U: Dictionary)
if (U.size() <= Word::GetMaxSize())