summaryrefslogtreecommitdiff
path: root/gcc/unwind.h
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-04 10:47:46 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-04 10:47:46 +0000
commitf8ecef7478d2898afbd6a2090b417c0be578bb5b (patch)
treefbca5c641e0562d683b20ddb9cb242c318a76e78 /gcc/unwind.h
parent8eb3a05999b8b822a11bfc682e6214c1905a7d44 (diff)
downloadgcc-f8ecef7478d2898afbd6a2090b417c0be578bb5b.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71057 138bc75d-0d04-0410-961f-82ee72b054a4
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 *);