diff options
author | Fred Fish <fnf@specifix.com> | 2004-02-12 00:17:53 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2004-02-12 00:17:53 +0000 |
commit | 9564ee9f56653915fe5392d68d1ec405f7bd48b6 (patch) | |
tree | e69a0ec76a1fc93e988deb09e0110bdf23b23e4d /gdb/regcache.c | |
parent | 0a064bb6f995c5850366fbf57b4d0181975638f8 (diff) | |
download | gdb-9564ee9f56653915fe5392d68d1ec405f7bd48b6.zip gdb-9564ee9f56653915fe5392d68d1ec405f7bd48b6.tar.gz gdb-9564ee9f56653915fe5392d68d1ec405f7bd48b6.tar.bz2 |
Fix obvious typo (completly -> completely) and update copyrights as needed
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index 504196d..7c40383 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -1,7 +1,7 @@ /* Cache and manage the values of registers for GDB, the GNU debugger. Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000, - 2001, 2002 Free Software Foundation, Inc. + 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -459,7 +459,7 @@ regcache_cpy_no_passthrough (struct regcache *dst, struct regcache *src) gdb_assert (src->descr->gdbarch == dst->descr->gdbarch); /* NOTE: cagney/2002-05-17: Don't let the caller do a no-passthrough move of data into the current_regcache(). Doing this would be - silly - it would mean that valid_p would be completly invalid. */ + silly - it would mean that valid_p would be completely invalid. */ gdb_assert (dst != current_regcache); memcpy (dst->registers, src->registers, dst->descr->sizeof_raw_registers); memcpy (dst->register_valid_p, src->register_valid_p, |