Skip to content

Commit 8a7b501

Browse files
[MemProf] Fix summary bitcode record description (NFC) (#139127)
Commit 776476c (PR117404), which introduced the radix tree representation of allocation context summary records, incorrectly changed the description of the FS_COMBINED_CALLSITE_INFO record instead of the intended FS_COMBINED_ALLOC_INFO record.
1 parent ae6e127 commit 8a7b501

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/Bitcode/LLVMBitCodes.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,12 @@ enum GlobalValueSummarySymtabCodes {
311311
// [nummib x (numcontext x total size)]?]
312312
FS_PERMODULE_ALLOC_INFO = 27,
313313
// Summary of combined index memprof callsite metadata.
314-
// [valueid, context radix tree index, numver,
315-
// numver x version]
314+
// [valueid, numstackindices, numver,
315+
// numstackindices x stackidindex, numver x version]
316316
FS_COMBINED_CALLSITE_INFO = 28,
317317
// Summary of combined index allocation memprof metadata.
318318
// [nummib, numver,
319-
// nummib x (alloc type, numstackids, numstackids x stackidindex),
319+
// nummib x (alloc type, context radix tree index),
320320
// numver x version]
321321
FS_COMBINED_ALLOC_INFO = 29,
322322
// List of all stack ids referenced by index in the callsite and alloc infos.

0 commit comments

Comments
 (0)