https://gcc.gnu.org/g:1608dedd7d0f1753c47c6c7b902a26a132a3df33
commit r17-1131-g1608dedd7d0f1753c47c6c7b902a26a132a3df33 Author: Dhruv Chawla <[email protected]> Date: Thu May 21 11:46:41 2026 +0000 xtensa: Fix typo in xtensa.cc Signed-off-by: Dhruv Chawla <[email protected]> gcc/ChangeLog: * config/xtensa/xtensa.cc (xtensa_legitimize_address): Fix typos. Diff: --- gcc/config/xtensa/xtensa.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/xtensa/xtensa.cc b/gcc/config/xtensa/xtensa.cc index d5be67d78fcd..253f887abc5c 100644 --- a/gcc/config/xtensa/xtensa.cc +++ b/gcc/config/xtensa/xtensa.cc @@ -2374,7 +2374,7 @@ xtensa_legitimize_address (rtx x, /* The upper limit of the ADDMI instruction's addition is allowed to be widened by the delta amount calculated above, and the excess is later - renormalized to the displacement of the load/store instrution. */ + renormalized to the displacement of the load/store instruction. */ offset2 = offset & ~0xff, offset = 0; if (! IN_RANGE (offset2, -32768, 32512 + delta)) {
