Skip to content

Commit 6bb05ea

Browse files
committed
[pdb] Tweak the message about overflowing the publics/globals record stream
Follow-up to #140884
1 parent 62cae9c commit 6bb05ea

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)