You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[LLD][COFF] Keep hasData true in NullChunk constructor
NullChunk instances do write data, even if it's always zero. Setting hasData to false
causes Writer::assignAddresses to ignore them when calculating rawSize. This usually
isn't an issue, as null chunks are typically in the middle of a section and later
chunks adjust the size. However, on ARM64EC, the auxiliary IAT is placed at the end
of the .rdata section and ends with a null chunk, making this problematic.
0 commit comments