diff options
author | Tom de Vries <tdevries@suse.de> | 2024-10-06 07:59:48 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-10-06 07:59:48 +0200 |
commit | 8f6606b6e3b568f6bbd3e2f0936eefb489e82a15 (patch) | |
tree | 17cbe5f6ae7a58b9ae24ab6c2727ca68477ef2b2 /gdb/arm-tdep.c | |
parent | 67eca1ccc1ad5237403dc151eb91f5e506dea0c4 (diff) | |
download | binutils-8f6606b6e3b568f6bbd3e2f0936eefb489e82a15.zip binutils-8f6606b6e3b568f6bbd3e2f0936eefb489e82a15.tar.gz binutils-8f6606b6e3b568f6bbd3e2f0936eefb489e82a15.tar.bz2 |
[gdb] Fix common misspellings
Fix the following common misspellings:
...
accidently -> accidentally
additonal -> additional
addresing -> addressing
adress -> address
agaisnt -> against
albiet -> albeit
arbitary -> arbitrary
artifical -> artificial
auxillary -> auxiliary
auxilliary -> auxiliary
bcak -> back
begining -> beginning
cannonical -> canonical
compatiblity -> compatibility
completetion -> completion
diferent -> different
emited -> emitted
emiting -> emitting
emmitted -> emitted
everytime -> every time
excercise -> exercise
existance -> existence
fucntion -> function
funtion -> function
guarentee -> guarantee
htis -> this
immediatly -> immediately
layed -> laid
noone -> no one
occurances -> occurrences
occured -> occurred
originaly -> originally
preceeded -> preceded
preceeds -> precedes
propogate -> propagate
publically -> publicly
refering -> referring
substract -> subtract
substracting -> subtracting
substraction -> subtraction
taht -> that
targetting -> targeting
teh -> the
thier -> their
thru -> through
transfered -> transferred
transfering -> transferring
upto -> up to
vincinity -> vicinity
whcih -> which
whereever -> wherever
wierd -> weird
withing -> within
writen -> written
wtih -> with
doesnt -> doesn't
...
Tested on x86_64-linux.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 6b235a0..9c996b8 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -4857,7 +4857,7 @@ arm_push_dummy_call (struct gdbarch *gdbarch, struct value *function, si = pop_stack_item (si); } - /* Finally, update teh SP register. */ + /* Finally, update the SP register. */ regcache_cooked_write_unsigned (regcache, ARM_SP_REGNUM, sp); return sp; @@ -12139,7 +12139,7 @@ arm_record_ld_st_imm_offset (arm_insn_decode_record *arm_insn_r) record_buf[arm_insn_r->reg_rec_count++] = reg_dest; /* The LDR instruction is capable of doing branching. If MOV LR, PC - preceeds a LDR instruction having R15 as reg_base, it + precedes a LDR instruction having R15 as reg_base, it emulates a branch and link instruction, and hence we need to save CPSR and PC as well. */ if (ARM_PC_REGNUM == reg_dest) @@ -12263,7 +12263,7 @@ arm_record_ld_st_reg_offset (arm_insn_decode_record *arm_insn_r) if (15 == reg_src2) { /* If R15 was used as Rn, hence current PC+8. */ - /* Pre-indexed mode doesnt reach here ; illegal insn. */ + /* Pre-indexed mode doesn't reach here ; illegal insn. */ u_regval[0] = u_regval[0] + 8; } /* Calculate target store address, Rn +/- Rm, register offset. */ @@ -12576,7 +12576,7 @@ arm_record_b_bl (arm_insn_decode_record *arm_insn_r) /* Handle B, BL, BLX(1) insns. */ /* B simply branches so we do nothing here. */ - /* Note: BLX(1) doesnt fall here but instead it falls into + /* Note: BLX(1) doesn't fall here but instead it falls into extension space. */ if (bit (arm_insn_r->arm_insn, 24)) { |