File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -220,8 +220,8 @@ class YAMLMemProfReader final : public MemProfReader {
220220 // a raw binary memprof profile.
221221 static bool hasFormat (const StringRef Path);
222222
223- // Create a YAMLMemProfReader after sanity checking the contents of the file at
224- // \p Path or the \p Buffer.
223+ // Create a YAMLMemProfReader after sanity checking the contents of the file
224+ // at \p Path or the \p Buffer.
225225 static Expected<std::unique_ptr<YAMLMemProfReader>> create (const Twine &Path);
226226 static Expected<std::unique_ptr<YAMLMemProfReader>>
227227 create (std::unique_ptr<MemoryBuffer> Buffer);
Original file line number Diff line number Diff line change @@ -1666,7 +1666,8 @@ IndexedMemProfReader::getMemProfCallerCalleePairs() const {
16661666
16671667memprof::AllMemProfData IndexedMemProfReader::getAllMemProfData () const {
16681668 memprof::AllMemProfData AllMemProfData;
1669- AllMemProfData.HeapProfileRecords .reserve (MemProfRecordTable->getNumEntries ());
1669+ AllMemProfData.HeapProfileRecords .reserve (
1670+ MemProfRecordTable->getNumEntries ());
16701671 for (uint64_t Key : MemProfRecordTable->keys ()) {
16711672 auto Record = getMemProfRecord (Key);
16721673 if (Record.takeError ())
You can’t perform that action at this time.
0 commit comments