LM32: Remove duplicate call to create GOT section.
Removes a redundant call to ``_bfd_elf_create_got_section`` in ``lm32_elf_create_dynamic_sections``, simplifying the code.
The function lm32_elf_create_dynamic_sections in the LM32 backend of BFD contained two calls to _bfd_elf_create_got_section. This commit removes one of the calls, as a single call suffices to create the GOT section. This simplifies the code without changing its functionality.
In Details
In elf32-lm32.c, the function lm32_elf_create_dynamic_sections was making duplicate calls to create the GOT section. This commit cleans up the code by removing the redundant call. The GOT (Global Offset Table) is crucial for dynamic linking and position-independent code. This change does not affect the functionality but simplifies the function.
For Context
This commit relates to the LM32 architecture support within the Binary File Descriptor (BFD) library. Managing dynamic sections includes the creation of a Global Offset Table. The code contained a duplicate call, which is removed to improve clarity without modifying behavior.