summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2015-11-18 01:08:30 +0000
committerKostya Serebryany <kcc@google.com>2015-11-18 01:08:30 +0000
commit4d6232221352e34f0fc238217f5b2f81a1a06d36 (patch)
tree600e6ffcd2eafe328ee8384d3a769fdb4d33f431
parent356be39f65c3cdf16665b2c35c77bef726ae8659 (diff)
downloadbcm5719-llvm-4d6232221352e34f0fc238217f5b2f81a1a06d36.tar.gz
bcm5719-llvm-4d6232221352e34f0fc238217f5b2f81a1a06d36.zip
[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
-rw-r--r--llvm/lib/Fuzzer/FuzzerTraceState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerTraceState.cpp b/llvm/lib/Fuzzer/FuzzerTraceState.cpp
index 80dd6bc8c41..8204a2ddc7c 100644
--- a/llvm/lib/Fuzzer/FuzzerTraceState.cpp
+++ b/llvm/lib/Fuzzer/FuzzerTraceState.cpp
@@ -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;
};
OpenPOWER on IntegriCloud