forked from OSchip/llvm-project
[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:
parent
4b48595adf
commit
4b79ebceb4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue