Libgomp: Correct typos in source files.
This commit fixes typos across multiple libgomp source files.
This commit resolves typos in various files within the libgomp directory, including acinclude.m4, env.c, libgomp.h, plugin/build-target-indirect-htab.h, plugin/plugin-gcn.c, plugin/plugin-nvptx.c, and target.c. These changes improve code readability and maintainability.
In Details
This commit addresses typos in various files within libgomp, which implements the OpenMP API. The affected files span environment variable parsing (env.c), target memory management (libgomp.h, target.c), and offloading plugins (plugin/plugin-gcn.c, plugin/plugin-nvptx.c). These fixes enhance code clarity across different aspects of the OpenMP runtime library.
For Context
This commit cleans up typos in libgomp, which is GCC's implementation of OpenMP. OpenMP is an API that lets developers easily parallelize code, splitting up work across multiple CPU cores or GPUs. Libgomp provides the runtime support for these parallel programs. Typos in the code, while not functional bugs, can make the code harder to read and maintain.