[libFuzzer] remove default initializer as a workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68399. Don't need it anyway.

llvm-svn: 253419
This commit is contained in:
Kostya Serebryany 2015-11-18 01:08:30 +00:00
parent 356be39f65
commit 4d62322213
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ class TraceState {
}
bool RecordingTraces = false;
std::vector<TraceBasedMutation> Mutations;
LabelRange LabelRanges[1 << (sizeof(dfsan_label) * 8)] = {};
LabelRange LabelRanges[1 << (sizeof(dfsan_label) * 8)];
const Fuzzer::FuzzingOptions &Options;
const Unit &CurrentUnit;
};