Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA/commit] undefined regcache_set_valid_p in remote-mips.c
@ 2009-03-16 20:07 Joel Brobecker
  2009-03-16 20:09 ` Daniel Jacobowitz
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Joel Brobecker @ 2009-03-16 20:07 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 718 bytes --]

remote-mips.c no longer builds because of this call to regcache_set_valid_p.
I couldn't find any trace of that routine in our ChangeLogs and I'm right
in the middle of a rather large change in my git directory, so I didn't
bother investigate more about this routine.

I think that the routine that we want, right now, is called
regcache_invalidate.

2009-03-16  Joel Brobecker  <brobecker@adacore.com>

        * remote-mips.c (mips_load): Replace call to regcache_set_valid_p, 
        which is undefined, by call to regcache_invalidate, which should
        do what the original author wanted to do.

Does this look plausible to anyone else? I'd just like a second pair
of eyes before I commit.

Thank you!
-- 
Joel

[-- Attachment #2: remote-mips.c.diff --]
[-- Type: text/x-diff, Size: 825 bytes --]

Index: remote-mips.c
===================================================================
RCS file: /cvs/src/src/gdb/remote-mips.c,v
retrieving revision 1.97
diff -u -p -r1.97 remote-mips.c
--- remote-mips.c	16 Mar 2009 19:38:32 -0000	1.97
+++ remote-mips.c	16 Mar 2009 19:50:15 -0000
@@ -3276,9 +3276,9 @@ mips_load (char *file, int from_tty)
          to a different value than GDB thinks it has. The following ensures
          that the write_pc() WILL update the PC value: */
       struct regcache *regcache = get_current_regcache ();
-      regcache_set_valid_p (regcache,
-			    gdbarch_pc_regnum (get_regcache_arch (regcache)),
-					       0);
+
+      regcache_invalidate (regcache,
+			   gdbarch_pc_regnum (get_regcache_arch (regcache)));
     }
   if (exec_bfd)
     write_pc (bfd_get_start_address (exec_bfd));

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-03-16 22:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-16 20:07 [RFA/commit] undefined regcache_set_valid_p in remote-mips.c Joel Brobecker
2009-03-16 20:09 ` Daniel Jacobowitz
2009-03-16 20:20 ` Pedro Alves
2009-03-16 21:19 ` Joel Brobecker
2009-03-16 21:44   ` Pedro Alves
2009-03-16 22:52     ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox