From 9380329c4e376163068984076e394df82eb57430 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Sun, 17 May 2015 02:44:31 +0000 Subject: [PATCH] Code cleanup: Reindent Fuzzer::MutateAndTestOne. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237533 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Fuzzer/FuzzerLoop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Fuzzer/FuzzerLoop.cpp b/lib/Fuzzer/FuzzerLoop.cpp index a8ea46b4b4d..9200f6293fd 100644 --- a/lib/Fuzzer/FuzzerLoop.cpp +++ b/lib/Fuzzer/FuzzerLoop.cpp @@ -315,8 +315,8 @@ void Fuzzer::MutateAndTestOne(Unit *U) { RunOneAndUpdateCorpus(*U); size_t NumTraceBasedMutations = StopTraceRecording(); for (size_t j = 0; j < NumTraceBasedMutations; j++) { - ApplyTraceBasedMutation(j, U); - RunOneAndUpdateCorpus(*U); + ApplyTraceBasedMutation(j, U); + RunOneAndUpdateCorpus(*U); } } } -- 2.40.0