diff options
author | Nick Kledzik <kledzik@apple.com> | 2014-01-23 18:42:10 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2014-01-23 18:42:10 +0000 |
commit | b3500e606195e9026d292a1cdd3faede6be7b0c2 (patch) | |
tree | 7959bd6b90d5bda9a6410c72d2f476817a7e437d /libcxxabi | |
parent | 25468a2ab4a55ed1aa3c0ac3bb41e64c7387ea9d (diff) | |
download | bcm5719-llvm-b3500e606195e9026d292a1cdd3faede6be7b0c2.tar.gz bcm5719-llvm-b3500e606195e9026d292a1cdd3faede6be7b0c2.zip |
Add missing alignment directives in assembly
llvm-svn: 199915
Diffstat (limited to 'libcxxabi')
-rw-r--r-- | libcxxabi/src/Unwind/UnwindRegistersRestore.S | 2 | ||||
-rw-r--r-- | libcxxabi/src/Unwind/UnwindRegistersSave.S | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libcxxabi/src/Unwind/UnwindRegistersRestore.S b/libcxxabi/src/Unwind/UnwindRegistersRestore.S index 15e2072fda7..9f077051b99 100644 --- a/libcxxabi/src/Unwind/UnwindRegistersRestore.S +++ b/libcxxabi/src/Unwind/UnwindRegistersRestore.S @@ -266,6 +266,7 @@ Lnovec: ; On entry: ; thread_state pointer is in x0 ; + .align 2 DEFINE_LIBUNWIND_PRIVATE_FUNCTION(_ZN9libunwind15Registers_arm646jumptoEv) ; skip restore of x0,x1 for now ldp x2, x3, [x0, #0x010] @@ -315,6 +316,7 @@ DEFINE_LIBUNWIND_PRIVATE_FUNCTION(_ZN9libunwind15Registers_arm646jumptoEv) @ On entry: @ thread_state pointer is in r0 @ + .align 2 DEFINE_LIBUNWIND_PRIVATE_FUNCTION(_ZN9libunwind13Registers_arm6jumptoEv) @ Use lr as base so that r0 can be restored. mov lr, r0 diff --git a/libcxxabi/src/Unwind/UnwindRegistersSave.S b/libcxxabi/src/Unwind/UnwindRegistersSave.S index 6f19f6c663d..681b44c7442 100644 --- a/libcxxabi/src/Unwind/UnwindRegistersSave.S +++ b/libcxxabi/src/Unwind/UnwindRegistersSave.S @@ -238,6 +238,7 @@ DEFINE_LIBUNWIND_FUNCTION(unw_getcontext) ; On entry: ; thread_state pointer is in x0 ; + .align 2 DEFINE_LIBUNWIND_FUNCTION(unw_getcontext) stp x0, x1, [x0, #0x000] stp x2, x3, [x0, #0x010] @@ -287,6 +288,7 @@ DEFINE_LIBUNWIND_FUNCTION(unw_getcontext) @ On entry: @ thread_state pointer is in r0 @ + .align 2 DEFINE_LIBUNWIND_FUNCTION(unw_getcontext) @ 32bit thumb-2 restrictions for stm: @ . the sp (r13) cannot be in the list |