Commit 044075ac by David Mosberger Committed by Richard Henderson

* unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.

From-SVN: r66590
parent 8231b3f9
2003-05-07 David Mosberger <davidm@hpl.hp.com>
* unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.
2003-05-07 Richard Henderson <rth@redhat.com> 2003-05-07 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (ix86_split_long_move): Fix base register * config/i386/i386.c (ix86_split_long_move): Fix base register
......
/* Subroutines needed for unwinding stack frames via the libunwind API. /* Subroutines needed for unwinding stack frames via the libunwind API.
Copyright (C) 2002 Copyright (C) 2002, 2003
Free Software Foundation, Inc. Free Software Foundation, Inc.
Contributed by David Mosberger-Tang <davidm@hpl.hp.com> Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
...@@ -161,6 +161,12 @@ _Unwind_GetRegionStart (struct _Unwind_Context *context) ...@@ -161,6 +161,12 @@ _Unwind_GetRegionStart (struct _Unwind_Context *context)
return (_Unwind_Ptr) pi.start_ip; return (_Unwind_Ptr) pi.start_ip;
} }
void *
_Unwind_FindEnclosingFunction (void *pc)
{
return NULL;
}
#include "unwind.inc" #include "unwind.inc"
#endif /* !__USING_SJLJ_EXCEPTIONS__ */ #endif /* !__USING_SJLJ_EXCEPTIONS__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment