diff options
author | Richard Henderson <rth@redhat.com> | 2001-05-15 20:08:28 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-05-15 20:08:28 -0700 |
commit | 48941cb809ff5c9be1116cb9669872017568c670 (patch) | |
tree | 97277bd113611965835cde2f4463c5221e02458b | |
parent | be079e1c0823c2211622ef1604f57846e6ad2a7b (diff) | |
download | gcc-48941cb809ff5c9be1116cb9669872017568c670.zip gcc-48941cb809ff5c9be1116cb9669872017568c670.tar.gz gcc-48941cb809ff5c9be1116cb9669872017568c670.tar.bz2 |
unwind-sjlj.c (_Unwind_GetDataRelBase): New.
* unwind-sjlj.c (_Unwind_GetDataRelBase): New.
(_Unwind_GetTextRelBase): New.
From-SVN: r42129
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/unwind-sjlj.c | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1b1c6a..b624dbf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-05-15 Richard Henderson <rth@redhat.com> + + * unwind-sjlj.c (_Unwind_GetDataRelBase): New. + (_Unwind_GetTextRelBase): New. + 2001-05-15 Mark Mitchell <mark@codesourcery.com> * config/sparc/sol2.h (CPLUSPLUS_CPP_SPEC): Define. diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c index 662968b..a6360a1 100644 --- a/gcc/unwind-sjlj.c +++ b/gcc/unwind-sjlj.c @@ -202,6 +202,19 @@ _Unwind_GetRegionStart (struct _Unwind_Context *context) return 0; } +#ifndef __ia64__ +_Unwind_Ptr +_Unwind_GetDataRelBase (struct _Unwind_Context *context) +{ + return 0; +} + +_Unwind_Ptr +_Unwind_GetTextRelBase (struct _Unwind_Context *context) +{ + return 0; +} +#endif static inline _Unwind_Reason_Code uw_frame_state_for (struct _Unwind_Context *context, _Unwind_FrameState *fs) |