[regcache] raw vs. cooked...

Michael Snyder msnyder@redhat.com
Sat Jun 7 00:57:00 GMT 2003


Andrew, 

I suspect the test below is not valid for pseudo-registers, since they
may not have a location in the reg cache at all.  Anyway, the change
makes sh4 work again.

Michael
-------------- next part --------------
Index: regcache.c
===================================================================
RCS file: /cvs/src/src/gdb/regcache.c,v
retrieving revision 1.82
diff -p -r1.82 regcache.c
*** regcache.c	17 May 2003 05:59:58 -0000	1.82
--- regcache.c	7 Jun 2003 00:55:07 -0000
*************** init_regcache_descr (struct gdbarch *gdb
*** 235,241 ****
    /* Sanity check.  Confirm that there is agreement between the
       regcache and the target's redundant REGISTER_BYTE (new targets
       should not even be defining it).  */
!   for (i = 0; i < descr->nr_cooked_registers; i++)
      {
        if (REGISTER_BYTE_P ())
  	gdb_assert (descr->register_offset[i] == REGISTER_BYTE (i));
--- 235,241 ----
    /* Sanity check.  Confirm that there is agreement between the
       regcache and the target's redundant REGISTER_BYTE (new targets
       should not even be defining it).  */
!   for (i = 0; i < descr->nr_raw_registers; i++)
      {
        if (REGISTER_BYTE_P ())
  	gdb_assert (descr->register_offset[i] == REGISTER_BYTE (i));


More information about the Gdb-patches mailing list