diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/unwind-libunwind.c | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba540d4..fc627a1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-05-07 David Mosberger <davidm@hpl.hp.com> + + * unwind-libunwind.c (_Unwind_FindEnclosingFunction): New. + 2003-05-07 Richard Henderson <rth@redhat.com> * config/i386/i386.c (ix86_split_long_move): Fix base register diff --git a/gcc/unwind-libunwind.c b/gcc/unwind-libunwind.c index bbbbd38..2e53a59 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__ */ |
