diff options
author | Joel Brobecker <brobecker@gnat.com> | 2005-12-20 17:57:44 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2005-12-20 17:57:44 +0000 |
commit | 0bcc32ae3bfa56e5beee79f1db5dc1324de6c53b (patch) | |
tree | 95573b8a10278c1bf2f4f6978f58453acf92d182 /gdb | |
parent | c02dabc388dd02d470eb85e75c9c7398371096bb (diff) | |
download | gdb-0bcc32ae3bfa56e5beee79f1db5dc1324de6c53b.zip gdb-0bcc32ae3bfa56e5beee79f1db5dc1324de6c53b.tar.gz gdb-0bcc32ae3bfa56e5beee79f1db5dc1324de6c53b.tar.bz2 |
* rs6000-tdep.c: Use proper spelling for existent.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/rs6000-tdep.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6d96dd2..e113f4e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2005-12-20 Joel Brobecker <brobecker@adacore.com> + * rs6000-tdep.c: Use proper spelling for existent. + +2005-12-20 Joel Brobecker <brobecker@adacore.com> + * rs6000-tdep.c: Fix spelling errors. 2005-12-19 Mark Kettenis <kettenis@gnu.org> diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c index 54064c4..53e7722 100644 --- a/gdb/rs6000-tdep.c +++ b/gdb/rs6000-tdep.c @@ -100,8 +100,8 @@ struct rs6000_framedata struct reg { char *name; /* name of register */ - unsigned char sz32; /* size on 32-bit arch, 0 if nonexistant */ - unsigned char sz64; /* size on 64-bit arch, 0 if nonexistant */ + unsigned char sz32; /* size on 32-bit arch, 0 if nonexistent */ + unsigned char sz64; /* size on 64-bit arch, 0 if nonexistent */ unsigned char fpr; /* whether register is floating-point */ unsigned char pseudo; /* whether register is pseudo */ int spr_num; /* PowerPC SPR number, or -1 if not an SPR. @@ -3120,7 +3120,7 @@ rs6000_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) wordsize = 4; } - /* Find a candidate among existant architectures. */ + /* Find a candidate among existent architectures. */ for (arches = gdbarch_list_lookup_by_info (arches, &info); arches != NULL; arches = gdbarch_list_lookup_by_info (arches->next, &info)) |