https://gcc.gnu.org/g:63132152368b929759098f30f35b50662519e1d8
commit r17-1113-g63132152368b929759098f30f35b50662519e1d8 Author: Dhruv Chawla <[email protected]> Date: Wed May 20 11:41:39 2026 +0000 microblaze: Fix typos in various files Signed-off-by: Dhruv Chawla <[email protected]> gcc/ChangeLog: * config/microblaze/microblaze.cc (struct microblaze_frame_info): Fix typos. (compute_frame_size): Likewise. * config/microblaze/microblaze.h: Likewise. Diff: --- gcc/config/microblaze/microblaze.cc | 4 ++-- gcc/config/microblaze/microblaze.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/microblaze/microblaze.cc b/gcc/config/microblaze/microblaze.cc index 84f40f9eedf9..82fa18b4235c 100644 --- a/gcc/config/microblaze/microblaze.cc +++ b/gcc/config/microblaze/microblaze.cc @@ -149,7 +149,7 @@ struct GTY(()) microblaze_frame_info { /* Global variables for machine-dependent things. */ -/* Toggle which pipleline interface to use. */ +/* Toggle which pipeline interface to use. */ static GTY(()) int microblaze_sched_use_dfa = 0; /* Threshold for data being put into the small data/bss area, instead @@ -2147,7 +2147,7 @@ compute_frame_size (HOST_WIDE_INT size) HOST_WIDE_INT var_size; /* # bytes that local variables take up. */ HOST_WIDE_INT args_size; /* # bytes that outgoing arguments take up. */ int link_debug_size; /* # bytes for link register. */ - HOST_WIDE_INT gp_reg_size; /* # bytes needed to store calle-saved gp regs. */ + HOST_WIDE_INT gp_reg_size; /* # bytes needed to store callee-saved gp regs. */ long mask; /* mask of saved gp registers. */ interrupt_handler = diff --git a/gcc/config/microblaze/microblaze.h b/gcc/config/microblaze/microblaze.h index 8d1bcba22913..2b5bd52040f7 100644 --- a/gcc/config/microblaze/microblaze.h +++ b/gcc/config/microblaze/microblaze.h @@ -401,7 +401,7 @@ extern enum reg_class microblaze_regno_to_class[]; /* The return address for the current frame is in r31 if this is a leaf function. Otherwise, it is on the stack. It is at a variable offset from sp/fp/ap, so we define a fake hard register rap which is a - poiner to the return address on the stack. This always gets eliminated + pointer to the return address on the stack. This always gets eliminated during reload to be either the frame pointer or the stack pointer plus an offset. */
