diff options
author | Nick Kledzik <kledzik@apple.com> | 2014-06-26 00:25:33 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2014-06-26 00:25:33 +0000 |
commit | 0f0cd46201c90c06d3f5e7c93c80cce0565881bc (patch) | |
tree | 4879fba88d362d197514c79686f05ee78a4537d4 /libcxxabi/src | |
parent | 905832bf8732d080887cd04df92a58d7eb60c24b (diff) | |
download | bcm5719-llvm-0f0cd46201c90c06d3f5e7c93c80cce0565881bc.tar.gz bcm5719-llvm-0f0cd46201c90c06d3f5e7c93c80cce0565881bc.zip |
Fix building for iOS
llvm-svn: 211751
Diffstat (limited to 'libcxxabi/src')
-rw-r--r-- | libcxxabi/src/Unwind/UnwindRegistersRestore.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/Unwind/UnwindRegistersRestore.S b/libcxxabi/src/Unwind/UnwindRegistersRestore.S index 1feb1d535fd..362a5b04f54 100644 --- a/libcxxabi/src/Unwind/UnwindRegistersRestore.S +++ b/libcxxabi/src/Unwind/UnwindRegistersRestore.S @@ -308,7 +308,7 @@ DEFINE_LIBUNWIND_PRIVATE_FUNCTION(_ZN9libunwind15Registers_arm646jumptoEv) ldp x0, x1, [x0, #0x000] ; restore x0,x1 ret lr ; jump to pc -#elif __arm__ +#elif __arm__ && !__APPLE__ @ @ void libunwind::Registers_arm::restoreCoreAndJumpTo() |