OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 20 matching lines...) Expand all Loading... | |
31 | 31 |
32 /* NOTE: for comments see: crti_arm.S */ | 32 /* NOTE: for comments see: crti_arm.S */ |
33 | 33 |
34 #include "native_client/src/trusted/service_runtime/nacl_config.h" | 34 #include "native_client/src/trusted/service_runtime/nacl_config.h" |
35 | 35 |
36 | 36 |
37 /* ====================================================================== */ | 37 /* ====================================================================== */ |
38 /* END .init section */ | 38 /* END .init section */ |
39 /* ====================================================================== */ | 39 /* ====================================================================== */ |
40 .section .init | 40 .section .init |
41 .align NACL_ARM_BUNDLE_SIZE_LOG | 41 .align NACL_BLOCK_SHIFT |
robertm
2012/03/23 15:03:38
dito
| |
42 pop {r4, lr} | 42 pop {r4, lr} |
43 nop | 43 nop |
44 bic lr, lr, #NACL_CONTROL_FLOW_MASK | 44 bic lr, lr, #NACL_CONTROL_FLOW_MASK |
45 bx lr | 45 bx lr |
46 | 46 |
47 /* ====================================================================== */ | 47 /* ====================================================================== */ |
48 /* END .fini section */ | 48 /* END .fini section */ |
49 /* ====================================================================== */ | 49 /* ====================================================================== */ |
50 .section .fini | 50 .section .fini |
51 .align NACL_ARM_BUNDLE_SIZE_LOG | 51 .align NACL_BLOCK_SHIFT |
52 pop {r4, lr} | 52 pop {r4, lr} |
53 nop | 53 nop |
54 bic lr, lr, #NACL_CONTROL_FLOW_MASK | 54 bic lr, lr, #NACL_CONTROL_FLOW_MASK |
55 bx lr | 55 bx lr |
OLD | NEW |