forked from OSchip/llvm-project
Remove unused class variable and update all callers/users.
llvm-svn: 217419
This commit is contained in:
parent
34b122fa27
commit
f0e65fc501
|
@ -39,7 +39,7 @@ HistoryThread::HistoryThread (lldb_private::Process &process,
|
||||||
m_originating_unique_thread_id (tid),
|
m_originating_unique_thread_id (tid),
|
||||||
m_queue_id (LLDB_INVALID_QUEUE_ID)
|
m_queue_id (LLDB_INVALID_QUEUE_ID)
|
||||||
{
|
{
|
||||||
m_unwinder_ap.reset (new HistoryUnwind (*this, pcs, stop_id, stop_id_is_valid));
|
m_unwinder_ap.reset (new HistoryUnwind (*this, pcs, stop_id_is_valid));
|
||||||
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
|
||||||
if (log)
|
if (log)
|
||||||
log->Printf ("%p HistoryThread::HistoryThread",
|
log->Printf ("%p HistoryThread::HistoryThread",
|
||||||
|
|
|
@ -24,11 +24,9 @@ using namespace lldb_private;
|
||||||
|
|
||||||
HistoryUnwind::HistoryUnwind (Thread &thread,
|
HistoryUnwind::HistoryUnwind (Thread &thread,
|
||||||
std::vector<lldb::addr_t> pcs,
|
std::vector<lldb::addr_t> pcs,
|
||||||
uint32_t stop_id,
|
|
||||||
bool stop_id_is_valid) :
|
bool stop_id_is_valid) :
|
||||||
Unwind (thread),
|
Unwind (thread),
|
||||||
m_pcs (pcs),
|
m_pcs (pcs),
|
||||||
m_stop_id (stop_id),
|
|
||||||
m_stop_id_is_valid (stop_id_is_valid)
|
m_stop_id_is_valid (stop_id_is_valid)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ namespace lldb_private {
|
||||||
class HistoryUnwind : public lldb_private::Unwind
|
class HistoryUnwind : public lldb_private::Unwind
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HistoryUnwind (Thread &thread, std::vector<lldb::addr_t> pcs, uint32_t stop_id, bool stop_id_is_valid);
|
HistoryUnwind (Thread &thread, std::vector<lldb::addr_t> pcs, bool stop_id_is_valid);
|
||||||
|
|
||||||
virtual ~HistoryUnwind ();
|
virtual ~HistoryUnwind ();
|
||||||
|
|
||||||
|
@ -42,7 +42,6 @@ protected:
|
||||||
private:
|
private:
|
||||||
|
|
||||||
std::vector<lldb::addr_t> m_pcs;
|
std::vector<lldb::addr_t> m_pcs;
|
||||||
uint32_t m_stop_id;
|
|
||||||
bool m_stop_id_is_valid;
|
bool m_stop_id_is_valid;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue