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 |
/* ====================================================================== */ |