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/LinuxThread.cpp | |
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/LinuxThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/LinuxThread.cpp | 12 |
1 files changed, 0 insertions, 12 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) { |