Currenlty ld.lld does not add a terminator (a CIE with its length field set to zero) to the .eh_frame sections it generates.
While the relevant standards (the AMD64 SysV ABI and the Linux LSB) are not explicit about this, such a terminator
is expected by some unwinder implementations and seems to be always emitted by ld.bfd. In addition to that, the
Linux LSB
https://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/ehframechpt.html#EHFRAME
explicitly says that
The .eh_frame section shall contain 1 or more Call Frame Information (CFI) records.
Currently, if the .eh_frame sections of the input files only contain terminators, ld.lld emits a zero=sized .eh_frame section
which clearly doesn't meet that requirement.
The diff makes sure a terminator gets added to each .eh_frame section and adjusts all the relevant tests to account
for that. An additional test isn't needed as these adjustments mean that the existence of the terminator is tested for by
several tests already.