cmd/link,runtime: unused fields in inlinedCall
#54849
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
FrozenDueToAge
NeedsFix
The path to resolution is known, but the work has not been done.
Milestone
runtime.inlinedCall
fieldsparent
(parentPc
is used instead),file
(pcfile
in the parent is used), andline
(pcln
in the parent is used) seem to be completely unused. They are a reflection of fields ingoobj.InlTreeNode
, which are used within the toolchain, but the runtime itself doesn't need them.If I did the math right, cmd/go contains 431KB of
inlineTree
objects (2.8% of the binary size). With those fields gone it would drop to 258KB.The text was updated successfully, but these errors were encountered: