diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-28 02:52:47 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-28 02:52:47 +0000 |
commit | 03b487bf19e3c3a913f1fdb35bc123c7cdd72f89 (patch) | |
tree | 86a82e48421b66e9286854744e9d378853613606 /libcxxabi/src | |
parent | e5f6e2b67101050c42fb2b1e6a1f050bd1378eb1 (diff) | |
download | bcm5719-llvm-03b487bf19e3c3a913f1fdb35bc123c7cdd72f89.tar.gz bcm5719-llvm-03b487bf19e3c3a913f1fdb35bc123c7cdd72f89.zip |
libc++abi: work around layering violation
This papers over a layering violation currently between libc++abi and libunwind.
It reaches into the sources to get the declaration of an ABI defined function.
This should allow the ARM buildbot to continue building libc++abi again.
llvm-svn: 235965
Diffstat (limited to 'libcxxabi/src')
-rw-r--r-- | libcxxabi/src/cxa_personality.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/cxa_personality.cpp b/libcxxabi/src/cxa_personality.cpp index a0883c17a99..0cdc52f1a22 100644 --- a/libcxxabi/src/cxa_personality.cpp +++ b/libcxxabi/src/cxa_personality.cpp @@ -24,7 +24,7 @@ #include "unwind.h" #if LIBCXXABI_ARM_EHABI -#include "Unwind/libunwind_ext.h" +#include "libunwind_ext.h" #endif /* |