[AArch64] Quick fix for cxa demangler

This makes all libcxxabi tests pass on AArch64. Further changes and
new tests to come.

Patch by Keith Walker.

llvm-svn: 245449
This commit is contained in:
Renato Golin 2015-08-19 15:24:03 +00:00
parent 4b48595adf
commit 4b79ebceb4
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ constexpr const char* float_data<double>::spec;
template <>
struct float_data<long double>
{
#if defined(__mips__) && defined(__mips_n64)
#if defined(__mips__) && defined(__mips_n64) || defined(__aarch64__)
static const size_t mangled_size = 32;
#elif defined(__arm__) || defined(__mips__)
static const size_t mangled_size = 16;