Code cleanup: Reindent Fuzzer::MutateAndTestOne.

llvm-svn: 237533
This commit is contained in:
Logan Chien 2015-05-17 02:44:31 +00:00
parent 24e89664cd
commit a8f01bc8e1
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}
}