diff options
author | Andrew Haley <aph@redhat.com> | 2002-11-27 10:33:56 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2002-11-27 10:33:56 +0000 |
commit | 5154b05d15e7334abb59366131744a9f0e463513 (patch) | |
tree | 34f512ad54f7839e2ebb92fb1e051fff27f5dbd6 /gcc/unwind.h | |
parent | a916a6c01992fb1bfd8a46ecc8a3dffdaf30647c (diff) | |
download | gcc-5154b05d15e7334abb59366131744a9f0e463513.zip gcc-5154b05d15e7334abb59366131744a9f0e463513.tar.gz gcc-5154b05d15e7334abb59366131744a9f0e463513.tar.bz2 |
unwind-sjlj.c (_Unwind_FindEnclosingFunction): Rename from_Unwind_Find_Enclosing_Function.
2002-11-26 Andrew Haley <aph@redhat.com>
* unwind-sjlj.c (_Unwind_FindEnclosingFunction): Rename
from_Unwind_Find_Enclosing_Function.
* unwind-dw2.c (_Unwind_FindEnclosingFunction): Likewise.
* config/ia64/unwind-ia64.c (_Unwind_FindEnclosingFunction): Likewise.
* libgcc-std.ver (_Unwind_FindEnclosingFunction): Rename from
_Unwind_Find_Enclosing_Function, export @@GCC_3.3.
* unwind.h (_Unwind_FindEnclosingFunction): Add.
From-SVN: r59568
Diffstat (limited to 'gcc/unwind.h')
-rw-r--r-- | gcc/unwind.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/unwind.h b/gcc/unwind.h index 3002d50..218181c 100644 --- a/gcc/unwind.h +++ b/gcc/unwind.h @@ -192,6 +192,10 @@ extern _Unwind_Ptr _Unwind_GetDataRelBase (struct _Unwind_Context *); extern _Unwind_Ptr _Unwind_GetTextRelBase (struct _Unwind_Context *); #endif +/* @@@ Given an address, return the entry point of the function that + contains it. */ +extern void * _Unwind_FindEnclosingFunction (void *pc); + #ifdef __cplusplus } #endif |