diff options
author | Fred Fish <fnf@specifix.com> | 2006-05-19 20:42:47 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2006-05-19 20:42:47 +0000 |
commit | a1f5b8454cd3a0e8c1634b708ef8e2cfcecef2db (patch) | |
tree | 89393037494bf8ff48ca6871f49b2f72336188f0 /gdb | |
parent | 4d345610f7ce5bd24162f31f804a552b6a0393ee (diff) | |
download | fsf-binutils-gdb-a1f5b8454cd3a0e8c1634b708ef8e2cfcecef2db.zip fsf-binutils-gdb-a1f5b8454cd3a0e8c1634b708ef8e2cfcecef2db.tar.gz fsf-binutils-gdb-a1f5b8454cd3a0e8c1634b708ef8e2cfcecef2db.tar.bz2 |
Checked in under the 'obvious fix rule'
2006-05-19 Fred Fish <fnf@specifix.com>
* Makefile.in: Fix spelling of 'explicitly' and 'explicit'.
* dwarfread.c: Fix spelling of 'unexpected'.
* mips-tdep.c: Fix spelling of 'possible' and 'Determine'.
* stack.c: Fix spelling of 'RETURN_VALUE'.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/Makefile.in | 4 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 2 | ||||
-rw-r--r-- | gdb/mips-tdep.c | 4 | ||||
-rw-r--r-- | gdb/stack.c | 2 |
5 files changed, 13 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 466a478..4527054 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2006-05-19 Fred Fish <fnf@specifix.com> + + * Makefile.in: Fix spelling of 'explicitly' and 'explicit'. + * dwarfread.c: Fix spelling of 'unexpected'. + * mips-tdep.c: Fix spelling of 'possible' and 'Determine'. + * stack.c: Fix spelling of 'RETURN_VALUE'. + 2006-05-18 Paul Gilliam <pgilliam@us.ibm.com * solib-svr4.c (enable_break): Breakup a long line into 3 shorter ones. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 5af00a7..6f3d911 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1274,7 +1274,7 @@ clean-tui: # describe removing files; the only sort of "re-create a distribution" # functionality described is if the distributed files are unmodified. # NB: While GDBSERVER might be configured on native systems, it isn't -# always included in SUBDIRS. Remove the gdbserver files explictly. +# always included in SUBDIRS. Remove the gdbserver files explicitly. distclean: clean @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do rm -f gdbserver/config.status gdbserver/config.log @@ -1489,7 +1489,7 @@ ALLDEPFILES = \ xcoffread.c xcoffsolib.c \ xstormy16-tdep.c -# Some files need explict build rules (due to -Werror problems) or due +# Some files need explicit build rules (due to -Werror problems) or due # to sub-directory fun 'n' games. # Provide explicit rule/dependency - works for more makes. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 31b0ae0..b776a57 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -7346,7 +7346,7 @@ read_type_die (struct die_info *die, struct dwarf2_cu *cu) read_base_type (die, cu); break; default: - complaint (&symfile_complaints, _("unexepected tag in read_type_die: '%s'"), + complaint (&symfile_complaints, _("unexpected tag in read_type_die: '%s'"), dwarf_tag_name (die->tag)); break; } diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 4378206..6150f38 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -2323,7 +2323,7 @@ struct mips_objfile_private /* According to the current ABI, should the type be passed in a floating-point register (assuming that there is space)? When there - is no FPU, FP are not even considered as possibile candidates for + is no FPU, FP are not even considered as possible candidates for FP registers and, consequently this returns false - forces FP arguments into integer registers. */ @@ -2644,7 +2644,7 @@ mips_eabi_push_dummy_call (struct gdbarch *gdbarch, struct value *function, return sp; } -/* Determin the return value convention being used. */ +/* Determine the return value convention being used. */ static enum return_value_convention mips_eabi_return_value (struct gdbarch *gdbarch, diff --git a/gdb/stack.c b/gdb/stack.c index d0bbc87..6eb96dc 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -1829,7 +1829,7 @@ If you continue, the return value that you specified will be ignored.\n"; frame). */ frame_pop (get_current_frame ()); - /* Store RETURN_VAUE in the just-returned register set. */ + /* Store RETURN_VALUE in the just-returned register set. */ if (return_value != NULL) { struct type *return_type = value_type (return_value); |