summaryrefslogtreecommitdiff
path: root/gcc/unwind-sjlj.c
diff options
context:
space:
mode:
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-25 17:20:10 +0000
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-25 17:20:10 +0000
commit19799cddae21f1edc8ef1a040b190a9cebd090aa (patch)
tree82b082e6055815d9ac117b67bac10e9a91984907 /gcc/unwind-sjlj.c
parente613f4f380e41a04e31736f5b4218a865e1bc623 (diff)
downloadgcc-19799cddae21f1edc8ef1a040b190a9cebd090aa.tar.gz
2002-11-25 Andrew Haley <aph@redhat.com>
* libgcc-std.ver (_Unwind_Find_Enclosing_Function): Add. * config/ia64/unwind-ia64.c (_Unwind_Find_Enclosing_Function): New. * unwind-sjlj.c (_Unwind_Find_Enclosing_Function): Likewise. * unwind-dw2.c (_Unwind_Find_Enclosing_Function): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59460 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-sjlj.c')
-rw-r--r--gcc/unwind-sjlj.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c
index 2293075e86e..59b54154ea3 100644
--- a/gcc/unwind-sjlj.c
+++ b/gcc/unwind-sjlj.c
@@ -208,6 +208,12 @@ _Unwind_GetRegionStart (struct _Unwind_Context *context __attribute__((unused))
return 0;
}
+void *
+_Unwind_Find_Enclosing_Function (void *pc)
+{
+ return NULL;
+}
+
#ifndef __ia64__
_Unwind_Ptr
_Unwind_GetDataRelBase (struct _Unwind_Context *context __attribute__((unused)) )