This fixes three bugs, in all of which state is not or incorrecly reset between
object (i.e. when reusing the same pass manager to create multiple object files)
- AttributeSection needs to be reset to nullptr, because otherwise the backend will try to emit into the old object file's attribute section causing a segmentation fault.
- MappingSymbolCounter needs to be reset, otherwise the second object file will start where the first one left off.
- The MCStreamer base class resets the Streamer's e_flags settings. Since EF_ARM_EABI_VER5 is set on streamer creation, we need to set it again after the MCStreamer was rest.
Also rename Reset (uppser case) to EHReset to avoid confusion with
reset (lower case).