From: Kostya Serebryany Date: Wed, 18 Nov 2015 01:08:30 +0000 (+0000) Subject: [libFuzzer] remove default initializer as a workaround for https://gcc.gnu.org/bugzil... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=01400f4e22a2f05c9d0ab175a55eddabc7f81b87;p=oota-llvm.git [libFuzzer] remove default initializer as a workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68399. Don't need it anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253419 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/FuzzerTraceState.cpp b/lib/Fuzzer/FuzzerTraceState.cpp index 80dd6bc8c41..8204a2ddc7c 100644 --- a/lib/Fuzzer/FuzzerTraceState.cpp +++ b/lib/Fuzzer/FuzzerTraceState.cpp @@ -210,7 +210,7 @@ class TraceState { } bool RecordingTraces = false; std::vector Mutations; - LabelRange LabelRanges[1 << (sizeof(dfsan_label) * 8)] = {}; + LabelRange LabelRanges[1 << (sizeof(dfsan_label) * 8)]; const Fuzzer::FuzzingOptions &Options; const Unit &CurrentUnit; };