summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2016-11-14 19:21:38 +0000
committerKostya Serebryany <kcc@google.com>2016-11-14 19:21:38 +0000
commit6c77811a291055b27679df87756752ea3d654b55 (patch)
treea9b90250335bd6e7c41b1514b6423b63a96f6f40 /llvm/lib
parent08714cdee457b4d5fc20a37538925dbba3eada75 (diff)
downloadbcm5719-llvm-6c77811a291055b27679df87756752ea3d654b55.tar.gz
bcm5719-llvm-6c77811a291055b27679df87756752ea3d654b55.zip
[libFuzzer] replace 'auto' with 'auto *' to better follow the LLVM style
llvm-svn: 286870
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Fuzzer/FuzzerDriver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerDriver.cpp b/llvm/lib/Fuzzer/FuzzerDriver.cpp
index 1fa8c3cf46d..abf0597e0d3 100644
--- 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())
OpenPOWER on IntegriCloud