We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8456e2 commit 2e75710Copy full SHA for 2e75710
llvm/include/llvm/ProfileData/DataAccessProf.h
@@ -116,9 +116,9 @@ struct DataAccessProfRecord {
116
Locations.emplace_back(Loc.FileName, Loc.Line);
117
}
118
// Empty constructor is used in yaml conversion.
119
- DataAccessProfRecord() : AccessCount(0) {}
+ DataAccessProfRecord() = default;
120
SymbolHandle SymHandle;
121
- uint64_t AccessCount;
+ uint64_t AccessCount = 0;
122
// The locations of data in the source code. Optional.
123
SmallVector<SourceLocation> Locations;
124
};
0 commit comments