From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Anderson To: gdb-patches@sources.redhat.com Subject: [RFA] regcache.c spelling fix Date: Wed, 12 May 2004 17:56:00 -0000 Message-id: <200405121744.i4CHipBo1545739@quasar.engr.sgi.com> X-SW-Source: 2004-05/msg00372.html Comment spelling RFA, regcache.c Paperwork is up to date, but currently ssh access not working for me so if someone could check this in? If someone folds it into another regcache.c patch no need to mention me at all... 2004-05-12 David Anderson * regcache.c (struct regcache_descr): fix comment spelling. Index: gdb/regcache.c =================================================================== RCS file: /cvs/src/src/gdb/regcache.c,v retrieving revision 1.113 diff -p -r1.113 regcache.c *** gdb/regcache.c 26 Apr 2004 09:49:36 -0000 1.113 --- gdb/regcache.c 12 May 2004 17:33:09 -0000 *************** struct regcache_descr *** 64,72 **** /* The cooked register space. Each cooked register in the range [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw register. The remaining [NR_RAW_REGISTERS ! .. NR_COOKED_REGISTERS) (a.k.a. pseudo regiters) are mapped onto both raw registers and memory by the architecture methods ! gdbarch_register_read and gdbarch_register_write. */ int nr_cooked_registers; long sizeof_cooked_registers; long sizeof_cooked_register_valid_p; --- 64,72 ---- /* The cooked register space. Each cooked register in the range [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw register. The remaining [NR_RAW_REGISTERS ! .. NR_COOKED_REGISTERS) (a.k.a. pseudo registers) are mapped onto both raw registers and memory by the architecture methods ! gdbarch_pseudo_register_read and gdbarch_pseudo_register_write. */ int nr_cooked_registers; long sizeof_cooked_registers; long sizeof_cooked_register_valid_p; Thanks. David Anderson