* regcache.c (regcache_print): Use get_current_regcache ()
authorUlrich Weigand <uweigand@de.ibm.com>
Wed, 20 Jun 2007 20:47:34 +0000 (20:47 +0000)
committerUlrich Weigand <uweigand@de.ibm.com>
Wed, 20 Jun 2007 20:47:34 +0000 (20:47 +0000)
instead of current_regcache.

gdb/ChangeLog
gdb/regcache.c

index ef274fa..faa5f4a 100644 (file)
@@ -1,3 +1,8 @@
+2007-06-20  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * regcache.c (regcache_print): Use get_current_regcache ()
+       instead of current_regcache.
+
 2007-06-20  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR 4606
index 05dc4bb..bea0b82 100644 (file)
@@ -1114,13 +1114,13 @@ static void
 regcache_print (char *args, enum regcache_dump_what what_to_dump)
 {
   if (args == NULL)
-    regcache_dump (current_regcache, gdb_stdout, what_to_dump);
+    regcache_dump (get_current_regcache (), gdb_stdout, what_to_dump);
   else
     {
       struct ui_file *file = gdb_fopen (args, "w");
       if (file == NULL)
        perror_with_name (_("maintenance print architecture"));
-      regcache_dump (current_regcache, file, what_to_dump);    
+      regcache_dump (get_current_regcache (), file, what_to_dump);
       ui_file_delete (file);
     }
 }