diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-08 01:15:40 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-08 01:15:40 +0000 |
commit | 0d01ba27b046dd69abae53daa68d284eea914740 (patch) | |
tree | e486e5ae4e8aae4f5e9be7c72133c276f7b471a4 /gcc/unwind-libunwind.c | |
parent | cd9e488e6d58909948ef95a50b9fa3a8fea37201 (diff) | |
download | gcc-0d01ba27b046dd69abae53daa68d284eea914740.tar.gz |
* unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66590 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-libunwind.c')
-rw-r--r-- | gcc/unwind-libunwind.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/unwind-libunwind.c b/gcc/unwind-libunwind.c index bbbbd3882b1..2e53a59eac7 100644 --- a/gcc/unwind-libunwind.c +++ b/gcc/unwind-libunwind.c @@ -1,5 +1,5 @@ /* Subroutines needed for unwinding stack frames via the libunwind API. - Copyright (C) 2002 + Copyright (C) 2002, 2003 Free Software Foundation, Inc. Contributed by David Mosberger-Tang <davidm@hpl.hp.com> @@ -161,6 +161,12 @@ _Unwind_GetRegionStart (struct _Unwind_Context *context) return (_Unwind_Ptr) pi.start_ip; } +void * +_Unwind_FindEnclosingFunction (void *pc) +{ + return NULL; +} + #include "unwind.inc" #endif /* !__USING_SJLJ_EXCEPTIONS__ */ |