diff options
author | Tom de Vries <tdevries@suse.de> | 2023-06-05 12:53:15 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-06-05 12:53:15 +0200 |
commit | f4afd6cb1b72760d1c8af4bc82c74c289aa1ecf7 (patch) | |
tree | 1b345a8ad7aebd3162de8a236ce90d7cee8f481d /gdb/or1k-tdep.c | |
parent | 3bfdcabbc20d56ce25629b464262928a4f90c042 (diff) | |
download | gdb-f4afd6cb1b72760d1c8af4bc82c74c289aa1ecf7.zip gdb-f4afd6cb1b72760d1c8af4bc82c74c289aa1ecf7.tar.gz gdb-f4afd6cb1b72760d1c8af4bc82c74c289aa1ecf7.tar.bz2 |
[gdb] Fix grammar in comments and docs
Fix grammar in some comments and docs:
- machines that doesn't -> machines that don't
- its a -> it's a
- its the -> it's the
- if does its not -> if it does it's not
- one more instructions if doesn't match ->
one more instruction if it doesn't match
- it's own -> its own
- it's first -> its first
- it's pointer -> its pointer
I also came across "it's performance" in gdb/stubs/*-stub.c in the HP public
domain notice, I've left that alone.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/or1k-tdep.c')
-rw-r--r-- | gdb/or1k-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/or1k-tdep.c b/gdb/or1k-tdep.c index 5cef1fa..a472a76 100644 --- a/gdb/or1k-tdep.c +++ b/gdb/or1k-tdep.c @@ -360,7 +360,7 @@ or1k_delay_slot_p (struct gdbarch *gdbarch, CORE_ADDR pc) NULL, 32, &tmp_fields, 0); /* NULL here would mean the last instruction was not understood by cgen. - This should not usually happen, but if does its not a delay slot. */ + This should not usually happen, but if it does it's not a delay slot. */ if (insn == NULL) return 0; |