Skip to content

Commit 2ecc621

Browse files
move type comment before statement
1 parent 4b25d67 commit 2ecc621

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/ProfileData/DataAccessProf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ struct DataAccessProfRecord {
121121
/// deserialization.
122122
class DataAccessProfData {
123123
public:
124+
// Use MapVector to keep input order of strings for serialization and
125+
// deserialization.
124126
using StringToIndexMap = llvm::MapVector<StringRef, uint64_t>;
125127

126128
DataAccessProfData() : Saver(Allocator) {}
@@ -201,8 +203,6 @@ class DataAccessProfData {
201203
// `Records` stores the records.
202204
MapVector<SymbolHandleRef, internal::DataAccessProfRecordRef> Records;
203205

204-
// Use MapVector to keep input order of strings for serialization and
205-
// deserialization.
206206
StringToIndexMap StrToIndexMap;
207207
llvm::SetVector<uint64_t> KnownColdHashes;
208208
llvm::SetVector<StringRef> KnownColdSymbols;

0 commit comments

Comments
 (0)