Libgcc: Correct typos in source files.
This commit fixes typos across multiple libgcc source files.
This commit resolves typos in various files within the libgcc directory, including files related to fixed-bit operations, gcov profiling, and unwinding. These changes improve code readability and maintainability.
In Details
This commit fixes typos in libgcc, GCC's low-level runtime support library. Affected files include fixed-bit.c (fixed-bit operations), libgcov-interface.c and libgcov-util.c (gcov profiling), and unwind-dw2.c and unwind-seh.c (unwinding). These changes enhance code clarity across different aspects of the runtime library.
For Context
This commit cleans up typos in libgcc, which is GCC's runtime support library. Libgcc provides essential functions that the compiled code relies on to execute, such as handling exceptions, performing arithmetic operations, and interacting with the operating system. Typos in the code, while not functional bugs, can make the code harder to read and maintain.