const-fy regcache::m_readonly_p
authorYao Qi <yao.qi@linaro.org>
Thu, 2 Nov 2017 15:15:42 +0000 (15:15 +0000)
committerYao Qi <yao.qi@linaro.org>
Thu, 2 Nov 2017 15:15:42 +0000 (15:15 +0000)
gdb:

2017-11-02  Yao Qi  <yao.qi@linaro.org>

* regcache.h (regcache) <m_readonly_p>: Change it to const bool.

gdb/ChangeLog
gdb/regcache.h

index c1a0cbe..7cec806 100644 (file)
@@ -1,5 +1,9 @@
 2017-11-02  Yao Qi  <yao.qi@linaro.org>
 
+       * regcache.h (regcache) <m_readonly_p>: Change it to const bool.
+
+2017-11-02  Yao Qi  <yao.qi@linaro.org>
+
        * breakpoint.c (insert_single_step_breakpoints): Update.
        * frame.c (struct frame_info) <aspace>: Add const.
        (frame_save_as_regcache): Add const.
index 7eb56a7..05d96b3 100644 (file)
@@ -378,7 +378,7 @@ private:
      cache can only be updated via the methods regcache_dup() and
      regcache_cpy().  The actual contents are determined by the
      reggroup_save and reggroup_restore methods.  */
-  bool m_readonly_p;
+  const bool m_readonly_p;
   /* If this is a read-write cache, which thread's registers is
      it connected to?  */
   ptid_t m_ptid;