diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-27 16:51:52 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-27 16:51:52 +0000 |
| commit | 93174d95424742f938023afac349f66847d17b43 (patch) | |
| tree | 638551e315343ddb8a1f8ba01acdd042ccf0dd20 | |
| parent | 63adb3f5ff87685fbc638673cbba617442ca76b9 (diff) | |
| download | bcm5719-llvm-93174d95424742f938023afac349f66847d17b43.tar.gz bcm5719-llvm-93174d95424742f938023afac349f66847d17b43.zip | |
unwind: remove inclusion of private_typeinfo.h
This include is not currently used. It is intended for type info based
switching, which is part of the EHABI specification. However, the unwinder does
not currently support this functionality. This backwards dependency into
libc++abi is currently causing a buildbot failure, remove it until we have a
better solution.
llvm-svn: 235893
| -rw-r--r-- | libunwind/src/Unwind-EHABI.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libunwind/src/Unwind-EHABI.cpp b/libunwind/src/Unwind-EHABI.cpp index 7ebba67fbcb..8a6bfc00dfd 100644 --- a/libunwind/src/Unwind-EHABI.cpp +++ b/libunwind/src/Unwind-EHABI.cpp @@ -26,7 +26,6 @@ #include "libunwind.h" #include "libunwind_ext.h" #include "unwind.h" -#include "../private_typeinfo.h" namespace { |

