[libFuzzer] remove default initializer as a workaround for https://gcc.gnu.org/bugzil...
authorKostya Serebryany <kcc@google.com>
Wed, 18 Nov 2015 01:08:30 +0000 (01:08 +0000)
committerKostya Serebryany <kcc@google.com>
Wed, 18 Nov 2015 01:08:30 +0000 (01:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253419 91177308-0d34-0410-b5e6-96231b3b80d8

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