Use the correct symbol version for _Unwind_GetIPInfo

See bug #29. Reported by Matthias Dahl.
This commit is contained in:
David Benjamin 2011-05-29 17:07:50 -07:00
parent cea4f99888
commit c8bacf3192
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,6 @@ GCC_3.0 {
_Unwind_GetDataRelBase;
_Unwind_GetGR;
_Unwind_GetIP;
_Unwind_GetIPInfo;
_Unwind_GetLanguageSpecificData;
_Unwind_GetRegionStart;
_Unwind_GetTextRelBase;
@ -21,3 +20,6 @@ GCC_3.3 {
_Unwind_GetCFA;
_Unwind_Resume_or_Rethrow;
};
GCC_4.2.0 {
_Unwind_GetIPInfo;
};