Commit 780f9446 by H.J. Lu Committed by H.J. Lu

re PR target/18380 (_Unwind_FindTableEntry shouldn't be exported from libunwind.so.7)

2004-11-09  H.J. Lu  <hongjiu.lu@intel.com>

	PR target/18380
	* config/ia64/unwind-ia64.h (_Unwind_FindTableEntry): Mark it
	hidden.

	* unwind-dw2.c (_Unwind_FindTableEntry): Removed.

From-SVN: r90387
parent 24c75ec6
2004-11-09 H.J. Lu <hongjiu.lu@intel.com>
PR target/18380
* config/ia64/unwind-ia64.h (_Unwind_FindTableEntry): Mark it
hidden.
* unwind-dw2.c (_Unwind_FindTableEntry): Removed.
2004-11-09 Jeff Law <law@redhat.com> 2004-11-09 Jeff Law <law@redhat.com>
* cfganal.c (flow_dfs_compute_reverse_execute): Accept new * cfganal.c (flow_dfs_compute_reverse_execute): Accept new
......
...@@ -28,4 +28,5 @@ struct unw_table_entry ...@@ -28,4 +28,5 @@ struct unw_table_entry
extern struct unw_table_entry * extern struct unw_table_entry *
_Unwind_FindTableEntry (void *pc, unsigned long *segment_base, _Unwind_FindTableEntry (void *pc, unsigned long *segment_base,
unsigned long *gp); unsigned long *gp)
__attribute__ ((__visibility__ ("hidden")));
...@@ -1324,7 +1324,6 @@ uw_identify_context (struct _Unwind_Context *context) ...@@ -1324,7 +1324,6 @@ uw_identify_context (struct _Unwind_Context *context)
alias (_Unwind_Backtrace); alias (_Unwind_Backtrace);
alias (_Unwind_DeleteException); alias (_Unwind_DeleteException);
alias (_Unwind_FindEnclosingFunction); alias (_Unwind_FindEnclosingFunction);
alias (_Unwind_FindTableEntry);
alias (_Unwind_ForcedUnwind); alias (_Unwind_ForcedUnwind);
alias (_Unwind_GetDataRelBase); alias (_Unwind_GetDataRelBase);
alias (_Unwind_GetTextRelBase); alias (_Unwind_GetTextRelBase);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment