When running the LLD test suite on a big-endian host, the COFF/pdb-framedata.yaml test case currently fails.
As it turns out, this is because code in DebugSHandler::finish intended to relocate RvaStart entries of FDO records does not work correctly when compiled for a big-endian host.
Fixed by always reading file data in little-endian mode.
Can't we just write support::ulittle32_t rvaStart; here and static cast to a uint8_t* it below in the function call?