From 01400f4e22a2f05c9d0ab175a55eddabc7f81b87 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Wed, 18 Nov 2015 01:08:30 +0000 Subject: [PATCH] [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 --- lib/Fuzzer/FuzzerTraceState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.34.1