https://gcc.gnu.org/g:c50b5507f857b0e660181ab58a319417faae1d4d
commit r17-1128-gc50b5507f857b0e660181ab58a319417faae1d4d Author: Dhruv Chawla <[email protected]> Date: Thu May 21 11:44:47 2026 +0000 vax: Fix typos in various files Signed-off-by: Dhruv Chawla <[email protected]> gcc/ChangeLog: * config/vax/vax.cc (vax_expand_addsub_di_operands): Fix typos. * config/vax/vax.h (PRINT_OPERAND_ADDRESS): Likewise. Diff: --- gcc/config/vax/vax.cc | 2 +- gcc/config/vax/vax.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/vax/vax.cc b/gcc/config/vax/vax.cc index 07267fa03031..47bdfadfde17 100644 --- a/gcc/config/vax/vax.cc +++ b/gcc/config/vax/vax.cc @@ -2017,7 +2017,7 @@ vax_expand_addsub_di_operands (rtx * operands, enum rtx_code code) gcc_unreachable (); /* If this is addition (thus operands are commutative) and if there is one - addend that duplicates the desination, we want that addend to be the + addend that duplicates the destination, we want that addend to be the first addend. */ if (code == PLUS && rtx_equal_p (operands[0], operands[2]) diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index bcb8f0ad3a8d..1089b210a13c 100644 --- a/gcc/config/vax/vax.h +++ b/gcc/config/vax/vax.h @@ -646,7 +646,7 @@ VAX operand formatting codes: #define PRINT_OPERAND_ADDRESS(FILE, ADDR) \ print_operand_address (FILE, ADDR) -/* This is a blatent lie. However, it's good enough, since we don't +/* This is a blatant lie. However, it's good enough, since we don't actually have any code whatsoever for which this isn't overridden by the proper FDE definition. */ #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, PC_REGNUM)
