diff options
author | Tom de Vries <tdevries@suse.de> | 2019-10-17 18:06:36 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2019-10-17 18:06:36 +0200 |
commit | 405feb71d4733a36cdc0629e9e4ccecd1a40dc39 (patch) | |
tree | f2075d2325440db8fca9b374c31639c71faab8cc /gdb/arm-tdep.c | |
parent | 062f1fc13a075a34890988f3a396b5e58fc86396 (diff) | |
download | gdb-405feb71d4733a36cdc0629e9e4ccecd1a40dc39.zip gdb-405feb71d4733a36cdc0629e9e4ccecd1a40dc39.tar.gz gdb-405feb71d4733a36cdc0629e9e4ccecd1a40dc39.tar.bz2 |
[gdb] Fix typos in comments
Fix typos in comments. NFC.
Tested on x86_64-linux.
gdb/ChangeLog:
2019-10-17 Tom de Vries <tdevries@suse.de>
* arm-nbsd-nat.c: Fix typos in comments.
* arm-tdep.c: Same.
* darwin-nat-info.c: Same.
* dwarf2read.c: Same.
* elfread.c: Same.
* event-top.c: Same.
* findvar.c: Same.
* gdbtypes.c: Same.
* hppa-tdep.c: Same.
* i386-tdep.c: Same.
* jit.c: Same.
* main.c: Same.
* mdebugread.c: Same.
* moxie-tdep.c: Same.
* nto-procfs.c: Same.
* osabi.c: Same.
* ppc-linux-tdep.c: Same.
* remote.c: Same.
* riscv-tdep.c: Same.
* s390-tdep.c: Same.
* sh-tdep.c: Same.
* sparc-linux-tdep.c: Same.
* sparc-nat.c: Same.
* stack.c: Same.
* target-descriptions.c: Same.
* top.c: Same.
* varobj.c: Same.
Change-Id: I6047967abd2d51c9000dea15184d19f4e952c3ff
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 5c1476a..fe5605c 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -6809,7 +6809,7 @@ thumb2_decode_svc_copro (struct gdbarch *gdbarch, uint16_t insn1, if (bit_4 == 0) /* STC/STC2. */ return thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "stc/stc2", dsc); - else /* LDC/LDC2 {literal, immeidate}. */ + else /* LDC/LDC2 {literal, immediate}. */ return thumb2_copy_copro_load_store (gdbarch, insn1, insn2, regs, dsc); } @@ -6954,7 +6954,7 @@ thumb_copy_16bit_ldr_literal (struct gdbarch *gdbarch, uint16_t insn1, return 0; } -/* Copy Thumb cbnz/cbz insruction. */ +/* Copy Thumb cbnz/cbz instruction. */ static int thumb_copy_cbnz_cbz (struct gdbarch *gdbarch, uint16_t insn1, @@ -7329,7 +7329,7 @@ thumb_process_displaced_32bit_insn (struct gdbarch *gdbarch, uint16_t insn1, case 0: if (bit (insn1, 6)) { - /* Load/store {dual, execlusive}, table branch. */ + /* Load/store {dual, exclusive}, table branch. */ if (bits (insn1, 7, 8) == 1 && bits (insn1, 4, 5) == 1 && bits (insn2, 5, 7) == 0) err = thumb2_copy_table_branch (gdbarch, insn1, insn2, regs, @@ -7390,7 +7390,7 @@ thumb_process_displaced_32bit_insn (struct gdbarch *gdbarch, uint16_t insn1, err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "dp/pb", dsc); } - else /* Data processing (modified immeidate) */ + else /* Data processing (modified immediate) */ err = thumb_copy_unmodified_32bit (gdbarch, insn1, insn2, "dp/mi", dsc); } |