Remove ProcessGdbRemote::m_flags
authorPavel Labath <labath@google.com>
Fri, 3 Nov 2017 22:12:50 +0000 (22:12 +0000)
committerPavel Labath <labath@google.com>
Fri, 3 Nov 2017 22:12:50 +0000 (22:12 +0000)
The member is completely unused. Discussed on lldb-dev.

llvm-svn: 317377

lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h

index 5b4c1c5..df3da20 100644 (file)
@@ -244,7 +244,7 @@ bool ProcessGDBRemote::CanDebug(lldb::TargetSP target_sp,
 //----------------------------------------------------------------------
 ProcessGDBRemote::ProcessGDBRemote(lldb::TargetSP target_sp,
                                    ListenerSP listener_sp)
-    : Process(target_sp, listener_sp), m_flags(0), m_gdb_comm(),
+    : Process(target_sp, listener_sp),
       m_debugserver_pid(LLDB_INVALID_PROCESS_ID), m_last_stop_packet_mutex(),
       m_register_info(),
       m_async_broadcaster(NULL, "lldb.process.gdb-remote.async-broadcaster"),
@@ -3255,7 +3255,6 @@ Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) {
 }
 
 void ProcessGDBRemote::Clear() {
-  m_flags = 0;
   m_thread_list_real.Clear();
   m_thread_list.Clear();
 }
index 54a472d..0ab3a58 100644 (file)
@@ -263,7 +263,6 @@ protected:
     eBroadcastBitAsyncThreadDidExit = (1 << 2)
   };
 
-  Flags m_flags; // Process specific flags (see eFlags enums)
   GDBRemoteCommunicationClient m_gdb_comm;
   std::atomic<lldb::pid_t> m_debugserver_pid;
   std::vector<StringExtractorGDBRemote> m_stop_packet_stack; // The stop packet
@@ -324,10 +323,6 @@ protected:
 
   void Clear();
 
-  Flags &GetFlags() { return m_flags; }
-
-  const Flags &GetFlags() const { return m_flags; }
-
   bool UpdateThreadList(ThreadList &old_thread_list,
                         ThreadList &new_thread_list) override;