diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-03-07 22:21:31 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-03-07 22:21:31 +0000 |
commit | a99e152e8003375e936df2f01eb13d44abd8aec2 (patch) | |
tree | f23911f1c89b2804698b59652bc176ef35f7b393 /libcxxabi/src | |
parent | 73460f94a2877cff7bedde434b3506c01e851275 (diff) | |
download | bcm5719-llvm-a99e152e8003375e936df2f01eb13d44abd8aec2.tar.gz bcm5719-llvm-a99e152e8003375e936df2f01eb13d44abd8aec2.zip |
Unwind: remove unnecessary check
Linux/GNU on AArch64 EH ABI Level III is implemented using exception frame
tables as defined in LSB II.11.6. The exception frame tables use the DWARF
Exception Header Encoding as described in LSB II.11.5.1. We already defined the
appropriate definition _LIBUNWIND_SUPPORT_DWARF_UNWIND to enable this.
llvm-svn: 231580
Diffstat (limited to 'libcxxabi/src')
-rw-r--r-- | libcxxabi/src/Unwind/config.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcxxabi/src/Unwind/config.h b/libcxxabi/src/Unwind/config.h index 2a7da6a836b..c9ec087a7ea 100644 --- a/libcxxabi/src/Unwind/config.h +++ b/libcxxabi/src/Unwind/config.h @@ -72,7 +72,6 @@ #define _LIBUNWIND_BUILD_ZERO_COST_APIS (defined(__i386__) || \ defined(__x86_64__) || \ - defined(__arm64__) || \ defined(__arm__)) #define _LIBUNWIND_BUILD_SJLJ_APIS 0 #define _LIBUNWIND_SUPPORT_FRAME_APIS (defined(__i386__) || \ |