aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Target/StackID.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Target/StackID.h')
-rw-r--r--include/lldb/Target/StackID.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/lldb/Target/StackID.h b/include/lldb/Target/StackID.h
index 7e713c73d972..75ad8ab38903 100644
--- a/include/lldb/Target/StackID.h
+++ b/include/lldb/Target/StackID.h
@@ -110,13 +110,18 @@ public:
protected:
friend class StackFrame;
-
+
void
SetPC (lldb::addr_t pc)
{
m_pc = pc;
}
+ void
+ SetCFA (lldb::addr_t cfa)
+ {
+ m_cfa = cfa;
+ }
//------------------------------------------------------------------
// Classes that inherit from StackID can see and modify these