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

Unified Diff: native_client/src/trusted/service_runtime/arch/arm/tramp.S

Issue 293009: Mark assembly routines that don't need to be exported as hidden (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: '' Created 11 years, 2 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
Index: native_client/src/trusted/service_runtime/arch/arm/tramp.S
===================================================================
--- native_client/src/trusted/service_runtime/arch/arm/tramp.S (revision 877)
+++ native_client/src/trusted/service_runtime/arch/arm/tramp.S (working copy)
@@ -44,9 +44,9 @@
.text
- .globl IDENTIFIER(NaCl_trampoline_seg_code)
- .globl IDENTIFIER(NaCl_trampoline_seg_end)
+.globl IDENTIFIER(NaCl_trampoline_seg_code)
+ HIDDEN(NaCl_trampoline_seg_code)
IDENTIFIER(NaCl_trampoline_seg_code):
/*
* ARM passes parameters to a callee in registers r0-r3. If there are more
@@ -84,5 +84,6 @@
NACL_HALT
.word NaClSyscallSeg
+.globl IDENTIFIER(NaCl_trampoline_seg_end)
+ HIDDEN(NaCl_trampoline_seg_end)
IDENTIFIER(NaCl_trampoline_seg_end):
-

Powered by Google App Engine
This is Rietveld 408576698