summaryrefslogtreecommitdiff
path: root/gcc/unwind.h
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-09-04 12:47:46 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2003-09-04 12:47:46 +0200
commitbc93e287d0e7a100c1aba869398b5341839c1927 (patch)
treefbca5c641e0562d683b20ddb9cb242c318a76e78 /gcc/unwind.h
parentec24a740308c01129bd934831787db53fbde8bc1 (diff)
downloadgcc-bc93e287d0e7a100c1aba869398b5341839c1927.tar.gz
libgcc-ia64.ver: Export _Unwind_GetBSP@@GCC_3.3.2.
* config/ia64/libgcc-ia64.ver: Export _Unwind_GetBSP@@GCC_3.3.2. * config/ia64/unwind-ia64.c (_Unwind_GetBSP): New function. * unwind.h (_Unwind_GetBSP): New prototype. * libgcc-std.ver: Add empty GCC_3.3.2 version. * mkmap-symver.awk: For symbol versions with no exported symbols, don't put anything into version script, just change all symbol versions which inherit from it to inherit from its ancestor. From-SVN: r71057
Diffstat (limited to 'gcc/unwind.h')
-rw-r--r--gcc/unwind.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/unwind.h b/gcc/unwind.h
index a0d6ab3a14b..35c765ef4ac 100644
--- a/gcc/unwind.h
+++ b/gcc/unwind.h
@@ -210,6 +210,9 @@ _Unwind_GetTextRelBase (struct _Unwind_Context *_C __attribute__ ((__unused__)))
abort ();
return 0;
}
+
+/* @@@ Retrieve the Backing Store Pointer of the given context. */
+extern _Unwind_Word _Unwind_GetBSP (struct _Unwind_Context *);
#else
extern _Unwind_Ptr _Unwind_GetDataRelBase (struct _Unwind_Context *);
extern _Unwind_Ptr _Unwind_GetTextRelBase (struct _Unwind_Context *);