From: Richard Henderson Date: Wed, 16 May 2001 03:08:28 +0000 (-0700) Subject: unwind-sjlj.c (_Unwind_GetDataRelBase): New. X-Git-Tag: prereleases/libstdc++-3.0.95~4450 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48941cb809ff5c9be1116cb9669872017568c670;p=thirdparty%2Fgcc.git unwind-sjlj.c (_Unwind_GetDataRelBase): New. * unwind-sjlj.c (_Unwind_GetDataRelBase): New. (_Unwind_GetTextRelBase): New. From-SVN: r42129 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1b1c6ab3d83..b624dbfcb2b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-05-15 Richard Henderson + + * unwind-sjlj.c (_Unwind_GetDataRelBase): New. + (_Unwind_GetTextRelBase): New. + 2001-05-15 Mark Mitchell * config/sparc/sol2.h (CPLUSPLUS_CPP_SPEC): Define. diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c index 662968bd0016..a6360a1720e2 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)