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

Unified Diff: src/untrusted/stubs/crti_arm.S

Issue 9816003: GYP build for ARM untrusted runtime. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 9 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: src/untrusted/stubs/crti_arm.S
===================================================================
--- src/untrusted/stubs/crti_arm.S (revision 8056)
+++ src/untrusted/stubs/crti_arm.S (working copy)
@@ -51,7 +51,7 @@
.section .init
- .align NACL_ARM_BUNDLE_SIZE_LOG
+ .align NACL_BLOCK_SHIFT
.global _init
_init:
/* TODO(robertm): check whether r4 needs to be saved */
@@ -60,7 +60,7 @@
* The code that follows will be appended by the linker, and will not
* be aligned individually, so we need to align it.
*/
- .align NACL_ARM_BUNDLE_SIZE_LOG
+ .align NACL_BLOCK_SHIFT
/*
* contained in crtn_arm.S (properly sandboxed, of course)
@@ -72,12 +72,12 @@
/* BEGIN .fini section */
/* ====================================================================== */
.section .fini
- .align NACL_ARM_BUNDLE_SIZE_LOG
+ .align NACL_BLOCK_SHIFT
.global _fini
_fini:
/* c.f. init section comment */
push {r4, lr}
- .align NACL_ARM_BUNDLE_SIZE_LOG
+ .align NACL_BLOCK_SHIFT
/* ====================================================================== */

Powered by Google App Engine
This is Rietveld 408576698