Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Unified Diff: pnacl/support/bitcode/pnacl_abi.c

Issue 14780006: Remove _Unwind_* stubs from pnacl_abi.bc (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix according to Mark's comments Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pnacl/driver/pnacl-ld.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pnacl/support/bitcode/pnacl_abi.c
diff --git a/pnacl/support/bitcode/pnacl_abi.c b/pnacl/support/bitcode/pnacl_abi.c
index deb8cfbb8b4bcbb26331468457fc93f6a7a2206e..9918fb75826546c14b3fec3859e92ab0f3ba3cde 100644
--- a/pnacl/support/bitcode/pnacl_abi.c
+++ b/pnacl/support/bitcode/pnacl_abi.c
@@ -6,38 +6,10 @@
/* These weak stubs are provided for bitcode linking,
* so that they are defined symbols.
- *
- * They will be overridden by the real functions in
- * libgcc_eh / libgcc_s / libcrt_platform
- *
- * for more information on these functions see:
- * http://www.nongnu.org/libunwind/docs.html
- * NOTE: libunwind uses slightly different function names:
- * e.g. _Unwind_DeleteException -> __libunwind_Unwind_DeleteException
- *
- * These two functions are pnacl specific:
- * _Unwind_PNaClSetResult0
- * _Unwind_PNaClSetResult1
*/
#define STUB(sym) void sym() { }
-STUB(_Unwind_DeleteException)
-STUB(_Unwind_GetRegionStart)
-STUB(_Unwind_GetDataRelBase)
-STUB(_Unwind_GetIP)
-STUB(_Unwind_GetIPInfo)
-STUB(_Unwind_GetTextRelBase)
-STUB(_Unwind_GetLanguageSpecificData)
-STUB(_Unwind_SetIP)
-STUB(_Unwind_PNaClSetResult0)
-STUB(_Unwind_PNaClSetResult1)
-STUB(_Unwind_RaiseException)
-STUB(_Unwind_Resume_or_Rethrow)
-STUB(_Unwind_Resume)
-STUB(_Unwind_GetCFA)
-STUB(_Unwind_Backtrace)
-
STUB(longjmp)
STUB(setjmp)
« no previous file with comments | « pnacl/driver/pnacl-ld.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698