Fix typos in various GIMPLE files
Corrects typos in multiple GIMPLE-related source files.
This commit addresses typos found in multiple files related to GIMPLE, GCC’s intermediate representation. These fixes improve the readability and maintainability of the codebase.
In Details
This commit fixes typos across multiple files in gcc/gimple/. The files span various GIMPLE passes, including array bounds checking, CRC optimization, folding, hardening control flow, loop interchange/jamming, low-level manipulation, matching exports, predicate analysis, range analysis. Outside of the GIMPLE team, these files and passes aren't widely known.
For Context
GIMPLE is a simplified form of source code that GCC uses internally to perform optimizations. It sits between the original source code and the assembly language that the computer executes. This commit fixes typos in the source code of GIMPLE-related files, improving the clarity and reducing the risk of errors.