[libFuzzer] remove default initializer as a workaround for https://gcc.gnu.org/bugzil...
[oota-llvm.git] / lib / Fuzzer / FuzzerTraceState.cpp
index 80dd6bc8c41fbb48ed809a015716aeda7996d29b..8204a2ddc7c8f2a117ec616b416e4eb645fea19f 100644 (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;
 };