Skip to content

Commit b839e16

Browse files
zmodemgithub-actions[bot]
authored andcommitted
Automerge: [pdb] Tweak the message about overflowing the publics/globals record stream
Follow-up to llvm/llvm-project#140884
2 parents f0d1a9b + 6bb05ea commit b839e16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ Error GSIStreamBuilder::finalizeMsfLayout() {
323323
uint64_t RecordBytes = PSH->RecordByteSize + GSH->RecordByteSize;
324324
if (RecordBytes > UINT32_MAX)
325325
return make_error<StringError>(
326-
formatv("the public ({0} bytes) and global ({1} bytes) "
327-
"symbols are too large to fit in a PDB file; "
326+
formatv("the public symbols ({0} bytes) and global symbols ({1} bytes) "
327+
"are too large to fit in a PDB file; "
328328
"the maximum total is {2} bytes.",
329329
PSH->RecordByteSize, GSH->RecordByteSize, UINT32_MAX),
330330
inconvertibleErrorCode());

0 commit comments

Comments
 (0)