diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-16 03:08:28 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-16 03:08:28 +0000 |
commit | 934382cc686bfe5d8fbd59a221e97db213ddd33b (patch) | |
tree | 97277bd113611965835cde2f4463c5221e02458b /gcc/unwind-sjlj.c | |
parent | 82d35096e309f8ab0be1e0a097da241e8cdeb7b2 (diff) | |
download | gcc-934382cc686bfe5d8fbd59a221e97db213ddd33b.tar.gz |
* unwind-sjlj.c (_Unwind_GetDataRelBase): New.
(_Unwind_GetTextRelBase): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42129 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-sjlj.c')
-rw-r--r-- | gcc/unwind-sjlj.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c index 662968bd001..a6360a1720e 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) |