diff options
Diffstat (limited to 'gcc/unwind-libunwind.c')
-rw-r--r-- | gcc/unwind-libunwind.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/unwind-libunwind.c b/gcc/unwind-libunwind.c index 8ed0524..bbbbd38 100644 --- a/gcc/unwind-libunwind.c +++ b/gcc/unwind-libunwind.c @@ -105,6 +105,15 @@ _Unwind_GetGR (struct _Unwind_Context *context, int index) return ret; } +/* Get the value of the CFA as saved in CONTEXT. */ + +_Unwind_Word +_Unwind_GetCFA (struct _Unwind_Context *context) +{ + /* ??? Is there any way to get this information? */ + return NULL; +} + /* Overwrite the saved value for register REG in CONTEXT with VAL. */ void |