2010-02-03  H.J. Lu  <hongjiu.lu@intel.com>
	* remote.c (remote_state): Remove gdbarch.
	(init_remote_state): Don't set gdbarch.
	(remote_query_supported): Pass target_gdbarch instead of
	rs->gdbarch to gdbarch_qsupported.
+2010-02-03  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * remote.c (remote_state): Remove gdbarch.
+       (init_remote_state): Don't set gdbarch.
+       (remote_query_supported): Pass target_gdbarch instead of
+       rs->gdbarch to gdbarch_qsupported.
+
 2010-02-03  H.J. Lu  <hongjiu.lu@intel.com>
 
        * gdbarch.sh: Add qsupported.
 
   /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
      responded to that.  */
   int ctrlc_pending_p;
-
-  /* GDBARCH associated with this target.  */
-  struct gdbarch *gdbarch;
 };
 
 /* Private data that we'll store in (struct thread_info)->private.  */
       rs->buf = xrealloc (rs->buf, rs->buf_size);
     }
 
-  /* Record our GDBARCH.  */
-  rs->gdbarch = gdbarch;
-
   return rsa;
 }
 
   rs->buf[0] = 0;
   if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
     {
-      const char *qsupported = gdbarch_qsupported (rs->gdbarch);
+      const char *qsupported = gdbarch_qsupported (target_gdbarch);
       if (qsupported)
        {
          char *q;