diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2011-06-03 20:40:54 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-06-03 20:40:54 +0000 |
| commit | 5a6fa540dcc0a86b6e4412ad27bbb0a732bc859b (patch) | |
| tree | 8dbe47be4a30cf36fd9c11f5259b5c29bf59dde5 /lldb/source/Plugins/Process/Linux | |
| parent | 70969ef10270d3be63498be123ef98ac5dcf2f57 (diff) | |
| download | bcm5719-llvm-5a6fa540dcc0a86b6e4412ad27bbb0a732bc859b.tar.gz bcm5719-llvm-5a6fa540dcc0a86b6e4412ad27bbb0a732bc859b.zip | |
Move SaveFrameZeroState and RestoreSaveFrameZero implementations to Thread base class
llvm-svn: 132586
Diffstat (limited to 'lldb/source/Plugins/Process/Linux')
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/LinuxThread.cpp | 12 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/LinuxThread.h | 7 |
2 files changed, 0 insertions, 19 deletions
diff --git a/lldb/source/Plugins/Process/Linux/LinuxThread.cpp b/lldb/source/Plugins/Process/Linux/LinuxThread.cpp index bac9d48c3ce..c6e0e553e44 100644 --- a/lldb/source/Plugins/Process/Linux/LinuxThread.cpp +++ b/lldb/source/Plugins/Process/Linux/LinuxThread.cpp @@ -85,18 +85,6 @@ LinuxThread::GetRegisterContext() return m_reg_context_sp; } -bool -LinuxThread::SaveFrameZeroState(RegisterCheckpoint &checkpoint) -{ - return false; -} - -bool -LinuxThread::RestoreSaveFrameZero(const RegisterCheckpoint &checkpoint) -{ - return false; -} - lldb::RegisterContextSP LinuxThread::CreateRegisterContextForFrame(lldb_private::StackFrame *frame) { diff --git a/lldb/source/Plugins/Process/Linux/LinuxThread.h b/lldb/source/Plugins/Process/Linux/LinuxThread.h index cafc83a7c87..e7d23b840f9 100644 --- a/lldb/source/Plugins/Process/Linux/LinuxThread.h +++ b/lldb/source/Plugins/Process/Linux/LinuxThread.h @@ -54,13 +54,6 @@ public: void Notify(const ProcessMessage &message); -protected: - virtual bool - SaveFrameZeroState(RegisterCheckpoint &checkpoint); - - virtual bool - RestoreSaveFrameZero(const RegisterCheckpoint &checkpoint); - private: RegisterContextLinux * GetRegisterContextLinux () |

